From 6720d530f4b30fc5e15686c6071d96bac2dc2cbc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 21 Mar 2015 15:59:55 -0400 Subject: [PATCH] v0.2.4d: fixed a bug with timekeeper's hourglass --- .../items/artifacts/TimekeepersHourglass.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java index 192ac4640..2ac9ba7da 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java @@ -209,7 +209,8 @@ public class TimekeepersHourglass extends Artifact { @Override public boolean attachTo(Char target) { - spend(charge); + //buffs always act last, so the stasis buff should end a turn early. + spend(charge-1); ((Hero)target).spendAndNext(charge); //shouldn't punish the player for going into stasis frequently