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

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