diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/blobs/WaterOfHealth.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/blobs/WaterOfHealth.java index 2abf201dc..c88f8af8e 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/blobs/WaterOfHealth.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/blobs/WaterOfHealth.java @@ -49,12 +49,12 @@ public class WaterOfHealth extends WellWater { Sample.INSTANCE.play( Assets.Sounds.DRINK ); - hero.HP = hero.HT; - hero.sprite.emitter().start( Speck.factory( Speck.HEALING ), 0.4f, 4 ); - PotionOfHealing.cure( hero ); hero.belongings.uncurseEquipped(); hero.buff( Hunger.class ).satisfy( Hunger.STARVING ); + + hero.HP = hero.HT; + hero.sprite.emitter().start( Speck.factory( Speck.HEALING ), 0.4f, 4 ); CellEmitter.get( hero.pos ).start( ShaftParticle.FACTORY, 0.2f, 3 );