v0.3.4: fixed item names being in different languages in bones

This commit is contained in:
Evan Debenham
2016-01-19 01:16:11 -05:00
committed by Evan Debenham
parent 4b6ae663f7
commit b070cb0c6a
5 changed files with 15 additions and 11 deletions
@@ -100,11 +100,12 @@ public abstract class Scroll extends Item {
public Scroll() {
super();
syncVisuals();
sync();
}
@Override
public void syncVisuals(){
public void sync(){
super.sync();
image = handler.image( this );
rune = handler.label( this );
};