v0.6.2: fixed pastys not retaining holiday info in remains
This commit is contained in:
parent
7c532206d7
commit
c0d432a3fb
|
@ -71,7 +71,16 @@ public class Pasty extends Food {
|
|||
}
|
||||
|
||||
{
|
||||
reset();
|
||||
|
||||
energy = Hunger.STARVING;
|
||||
|
||||
bones = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void reset() {
|
||||
super.reset();
|
||||
switch(holiday){
|
||||
case NONE:
|
||||
name = Messages.get(this, "pasty");
|
||||
|
@ -86,12 +95,8 @@ public class Pasty extends Food {
|
|||
image = ItemSpriteSheet.CANDY_CANE;
|
||||
break;
|
||||
}
|
||||
|
||||
energy = Hunger.STARVING;
|
||||
|
||||
bones = true;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void execute(Hero hero, String action) {
|
||||
super.execute(hero, action);
|
||||
|
|
Loading…
Reference in New Issue
Block a user