diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-01 01:06:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-01 01:06:06 -0300 |
commit | 892b9cb8feec7ad8955322ce6ec14351e914b3fd (patch) | |
tree | 0286f7fd654ab5cbfe5bb3a3cc314cba976ed7e2 | |
parent | f65c75ac274dc73d0b2d828c9ae769690b406783 (diff) | |
download | serverdata-892b9cb8feec7ad8955322ce6ec14351e914b3fd.tar.gz serverdata-892b9cb8feec7ad8955322ce6ec14351e914b3fd.tar.bz2 serverdata-892b9cb8feec7ad8955322ce6ec14351e914b3fd.tar.xz serverdata-892b9cb8feec7ad8955322ce6ec14351e914b3fd.zip |
What's the issue with gloves?r11.3_20200404
Try reverting the logic (affects: Aegis Shield)
-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 79fc6833e..d09b4ddc1 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -446,7 +446,7 @@ function script csys_Apply { // Remove weapon-only bonuses if it is armor delinventorylist(); getinventorylist(); - if (getiteminfo(@inventorylist_id[.@id], ITEMINFO_TYPE) == IT_ARMOR) + if (getiteminfo(@inventorylist_id[.@id], ITEMINFO_TYPE) != IT_WEAPON) csys_ArmorFix(); else @csysArmor=false; |