diff options
-rw-r--r-- | db/constants.conf | 1 | ||||
-rw-r--r-- | npc/craft/options.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/db/constants.conf b/db/constants.conf index ccbe0dfd6..963c8777c 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -2317,6 +2317,7 @@ constants_db: { PVP_WAITTIME: 1800 // 30 minutes PCBLOCK_HARD: 255 // Move+Attack+Skill+Item+Chat+Immune+SitStand+Commands PCBLOCK_SOFT: 47 // Move+Attack+Skill+Item+Immune + CRAFT_MAXLV: 200 BCONFN_SPAWN: 70 BCONFD_SPAWN: 100 BCONFN_MOBHP: 95 // TODO: Maybe we don't want this constant? (ie. variable) diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 6264734e6..f06b78c83 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -1106,8 +1106,8 @@ function script csysGUI_RaiseOpt { .@pc=csysGUI_OptPrice(.@sk); .@lv=getd("CRAFTSYS["+.@sk+"]"); if (csysGUI_OptReq(.@sk)) { - if (.@lv > 200) { - mesc l("You cannot raise crafting skills beyond level @@!", 200), 1; + if (.@lv > CRAFT_MAXLV) { + mesc l("You cannot raise crafting skills beyond level @@!", CRAFT_MAXLV), 1; return false; } if (Mobpt >= .@pc) { |