diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java index 620bf3002..0a0e8f554 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java @@ -67,7 +67,7 @@ public class CorpseDust extends Item { @Override public boolean doPickUp(Hero hero) { if (super.doPickUp(hero)){ - GLog.n( Messages.get("chill") ); + GLog.n( Messages.get( this, "chill") ); Buff.affect(hero, DustGhostSpawner.class); return true; }