From 36b1e598d5e84b105a92ce3d3c3969573ab42c4c Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 21 Jun 2020 03:31:55 -0300 Subject: Exclude wands of the +40% ATK/MATK bonus %%n Thinking well, that's not a good idea. --- npc/craft/options.txt | 4 ++-- 1 file 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); } -- cgit v1.2.3-60-g2f50