From ecb358b7a3e9eb4830571b2a5e12ea8ff92708f1 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 19 Aug 2021 16:06:42 -0400 Subject: [PATCH] v1.0.1: fixed liquid metal not refreshing quickslots --- .../shatteredpixel/shatteredpixeldungeon/items/LiquidMetal.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/LiquidMetal.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/LiquidMetal.java index b7197d404..4ffe59005 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/LiquidMetal.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/LiquidMetal.java @@ -135,6 +135,7 @@ public class LiquidMetal extends Item { curUser.sprite.operate(curUser.pos); Sample.INSTANCE.play(Assets.Sounds.DRINK); + updateQuickslot(); curUser.sprite.emitter().start(Speck.factory(Speck.LIGHT), 0.1f, 10); } }