v0.2.2: fixed a visual sync bug with bones system

This commit is contained in:
Evan Debenham
2014-10-25 14:11:46 -04:00
parent 2d176b4b62
commit bd4405a805
6 changed files with 31 additions and 14 deletions
@@ -92,9 +92,14 @@ public abstract class Scroll extends Item {
public Scroll() {
super();
image = handler.image( this );
rune = handler.label( this );
syncVisuals();
}
@Override
public void syncVisuals(){
image = handler.image( this );
rune = handler.label( this );
};
@Override
public ArrayList<String> actions( Hero hero ) {