From d7bd161f2d7a223c2e616a0618fd090b90c91842 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 7 Dec 2023 13:05:14 -0500 Subject: [PATCH] v2.3.0: fixed potions of strength no longer increasing STR (whoops!) --- .../shatteredpixeldungeon/items/potions/PotionOfStrength.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/PotionOfStrength.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/PotionOfStrength.java index 0bd40bf28..90de4cf8d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/PotionOfStrength.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/potions/PotionOfStrength.java @@ -41,6 +41,8 @@ public class PotionOfStrength extends Potion { public void apply( Hero hero ) { identify(); + hero.STR++; + GLog.p( Messages.get(this, "msg", hero.STR()) ); Badges.validateStrengthAttained();