mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 03:37:38 +00:00
clear energy on death
This commit is contained in:
parent
e0593554b6
commit
af381dcf42
@ -108,11 +108,13 @@ public class EntityAvatar extends GameEntity {
|
||||
public void onDeath(int killerId) {
|
||||
this.killedType = PlayerDieType.PLAYER_DIE_KILL_BY_MONSTER;
|
||||
this.killedBy = killerId;
|
||||
clearEnergy(PropChangeReason.PROP_CHANGE_STATUE_RECOVER);
|
||||
}
|
||||
|
||||
public void onDeath(PlayerDieType dieType, int killerId) {
|
||||
this.killedType = dieType;
|
||||
this.killedBy = killerId;
|
||||
clearEnergy(PropChangeReason.PROP_CHANGE_STATUE_RECOVER);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user