v0.3.4: externalized strings belonging to blobs

This commit is contained in:
Evan Debenham
2015-12-27 22:08:03 -05:00
committed by Evan Debenham
parent 18bcdd42cb
commit 2c0cd939f0
13 changed files with 41 additions and 19 deletions
@@ -23,6 +23,7 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.blobs;
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GooSprite;
public class GooWarn extends Blob {
@@ -67,7 +68,7 @@ public class GooWarn extends Blob {
@Override
public String tileDesc() {
return "Specs of dark energy are swarming here!";
return Messages.get(this, "desc");
}
}