v0.4.3a: fixed a 'no string found' error in corpsedust

This commit is contained in:
Evan Debenham 2016-10-22 22:42:52 -04:00 committed by Evan Debenham
parent 70c1bb46cf
commit 2bb55aa7c1

View File

@ -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;
}