mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-04 06:22:58 +00:00
Remove NPC reference to Factory on death
This commit is contained in:
parent
9b908a5310
commit
9bc3cbf4ce
@ -41,15 +41,17 @@ public class HarvesterNPC extends NonPlayerCharacter {
|
||||
//Self-destroy when age limit is reached
|
||||
if (getAge() >= NonPlayerCharacter.LIFETIME) {
|
||||
setDead(true);
|
||||
getFactory().getNpcs().remove(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeadCallback() {
|
||||
|
||||
getFactory().getNpcs().remove(this);
|
||||
|
||||
GameServer.INSTANCE.getEventDispatcher().dispatch(
|
||||
new ObjectDeathEvent((Object)this, ID));
|
||||
new ObjectDeathEvent(this, ID));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user