diff options
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r-- | npc/craft/options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index bf4913387..6d572f5bd 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -503,8 +503,8 @@ function script csys_BonusCalc { // Two Hands/Bows: +50% if ((@csysArmor & CSYS_ZWEIHANDER) || (@csysArmor & CSYS_RANGED)) .@base=max(1, .@base*3/2); - // Brawling/Magical: +40% - else if ((@csysArmor & CSYS_BRAWLING) || (@csysArmor & CSYS_MAGICAL)) + // Brawling: +40% + else if (@csysArmor & CSYS_BRAWLING) .@base=max(1, .@base*7/5); } |