diff options
-rw-r--r-- | conf/map/battle/monster.conf | 5 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/conf/map/battle/monster.conf b/conf/map/battle/monster.conf index 899a6a70b..90a7a7da8 100644 --- a/conf/map/battle/monster.conf +++ b/conf/map/battle/monster.conf @@ -271,3 +271,8 @@ boss_icewall_walk_block: 1 // only have a range of 9. If you put a number higher than 0, their range will // be increased by that number. monster_eye_range_bonus: 0 + +// Should slaves chase after what their master is chasing? +// false: Don't chase after what master is chasing. (old behavior) +// true: Chase after what master is chasing. (official, default) +slave_chase_masters_chasetarget: false diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 8425d7679..9b2bd976e 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -397,7 +397,7 @@ function script MakeBlueprint { } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftBacksword); - array_push(.@recipes, CraftShortsword); + array_push(.@recipes, CraftShortSword); array_push(.@recipes, CraftBoneKnife); array_push(.@recipes, CraftKitana); array_push(.@recipes, CraftBroadsword); |