diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index 58e47daf7..8f2389dc0 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -1143,10 +1143,10 @@ public class Hero extends Char { public void rest( boolean fullRest ) { spendAndNextConstant( TIME_TO_REST ); + if (hasTalent(Talent.HOLD_FAST)){ + Buff.affect(this, HoldFast.class); + } if (!fullRest) { - if (hasTalent(Talent.HOLD_FAST)){ - Buff.affect(this, HoldFast.class); - } if (sprite != null) { sprite.showStatus(CharSprite.DEFAULT, Messages.get(this, "wait")); }