diff options
Diffstat (limited to 'npc')
-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 8e6ace561..2e6e2d96b 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -537,9 +537,9 @@ function script csys_BonusCalc { // Magical: +50% if (@csysArmor & CSYS_MAGICAL) .@base=max(1, .@base*3/2); - // Brawling: +40% + // Brawling: +25% else if (@csysArmor & CSYS_BRAWLING) - .@base=max(1, .@base*7/5); + .@base=max(1, .@base*5/4); } //////////////////////////////////// |