diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Chilling.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Chilling.java index acc51406b..454166ce8 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Chilling.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/weapon/enchantments/Chilling.java @@ -43,8 +43,7 @@ public class Chilling extends Weapon.Enchantment { if (Random.Int( level + 3 ) >= 2) { - //FIXME this should probably stack chilled - Buff.affect( defender, Chill.class, 3f + level/4f ); + Buff.affect( defender, Chill.class, 3f ); Splash.at( defender.sprite.center(), 0xFFB2D6FF, 5); }