diff options
-rw-r--r-- | npc/003-0/berserk.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/npc/003-0/berserk.txt b/npc/003-0/berserk.txt index de90fbaee..c436d1c24 100644 --- a/npc/003-0/berserk.txt +++ b/npc/003-0/berserk.txt @@ -5,9 +5,7 @@ // Leader of the BERSERK class 003-0,34,45,4 script Ragger Master NPC_PLAYER,{ - if (!is_staff()) - goto L_Close; - if (!(MAGIC_SUBCLASS & CL_BERSERK)) + if (!(MAGIC_SUBCLASS & CL_BERSERKER)) goto L_SignUp; goto L_Member; @@ -23,7 +21,7 @@ L_SignUp: if (askyesno() != ASK_YES) close; // TODO: Requeriment for signing up to a subclass? Or is the tier + skill quest hard enough? - MAGIC_SUBCLASS=MAGIC_SUBCLASS|CL_BERSERK; + MAGIC_SUBCLASS=MAGIC_SUBCLASS|CL_BERSERKER; mesn; mesq l("Welcome to the berserker guild!"); close; |