diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java index 8e95df4ea..5d2eafa66 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Amulet.java @@ -74,7 +74,7 @@ public class Amulet extends Item { if (!Statistics.amuletObtained) { Statistics.amuletObtained = true; - hero.spend(-TIME_TO_PICK_UP); + hero.spend(-hero.cooldown()); //delay with an actor here so pickup behaviour can fully process. Actor.add(new Actor(){