summaryrefslogtreecommitdiff
path: root/npc/craft
diff options
context:
space:
mode:
Diffstat (limited to 'npc/craft')
-rw-r--r--npc/craft/options.txt4
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);
}