V0.2.0: returned spend override to hero class (does nothing, needed for access level, has to be public, super is protected).

This commit is contained in:
Evan Debenham 2014-09-10 20:05:06 -04:00
parent 32505de1ac
commit cce6e8dfa0

View File

@ -348,6 +348,11 @@ public class Hero extends Char {
return 1f; return 1f;
} }
} }
@Override
public void spend( float time ) {
super.spend( time );
};
public void spendAndNext( float time ) { public void spendAndNext( float time ) {
busy(); busy();