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();