diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-25 23:52:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-25 23:52:32 -0300 |
commit | c04bef43e6215c5808ce7c7ec85880513dedfbcb (patch) | |
tree | c9b5189116a009374f2565754429cda8bb61f074 /npc | |
parent | c077586a37fa9a28d460a4f4b4ae1ff85fa61fb5 (diff) | |
download | serverdata-c04bef43e6215c5808ce7c7ec85880513dedfbcb.tar.gz serverdata-c04bef43e6215c5808ce7c7ec85880513dedfbcb.tar.bz2 serverdata-c04bef43e6215c5808ce7c7ec85880513dedfbcb.tar.xz serverdata-c04bef43e6215c5808ce7c7ec85880513dedfbcb.zip |
Monocle Fixing bonus no longer increases weight capacity.
It now boosts crafting as @Kolchak thought it did.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index fee06968b..042f29ad0 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -24,7 +24,7 @@ // Returns a bonus from equips (max: 1) function script csys_equip { // Same as: isequippedcnt(BlacksmithAxe{, BlacksmithHelmet, etc.}) - return (getequipid(EQI_HAND_R) == BlacksmithAxe); + return (isequippedcnt(BlacksmithAxe, Monocle)); } // csys_Generate( cr_id{, preserve} ) |