From abc60c6465d83daa08b5bfec5cb18600c5ff1e9f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 17 Sep 2018 14:11:47 -0400 Subject: [PATCH] v0.7.0: corrected scaling numbers on lucky enchant --- .../shatteredpixeldungeon/items/weapon/enchantments/Lucky.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Lucky.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Lucky.java index c2effaee1..0f748df27 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Lucky.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Lucky.java @@ -54,7 +54,7 @@ public class Lucky extends Weapon.Enchantment { } else { buff = Buff.affect(attacker, Luck.class); - buff.zeroChance = zeroChance * (0.5f - 0.001f*level); + buff.zeroChance = zeroChance * (0.5f - (0.01f*level)); return 0; }