mobs that spawn with no loot respawn again
This commit is contained in:
@@ -864,9 +864,7 @@ public class MobAI {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//No items in inventory.
|
//No items in inventory.
|
||||||
} else {
|
} else if (aiAgent.isHasLoot()) {
|
||||||
//Mob's Loot has been looted.
|
|
||||||
if (aiAgent.isHasLoot()) {
|
|
||||||
if (System.currentTimeMillis() > aiAgent.deathTime + MBServerStatics.DESPAWN_TIMER_ONCE_LOOTED) {
|
if (System.currentTimeMillis() > aiAgent.deathTime + MBServerStatics.DESPAWN_TIMER_ONCE_LOOTED) {
|
||||||
aiAgent.despawn();
|
aiAgent.despawn();
|
||||||
aiAgent.deathTime = System.currentTimeMillis();
|
aiAgent.deathTime = System.currentTimeMillis();
|
||||||
@@ -881,7 +879,6 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if(Mob.discDroppers.contains(aiAgent))
|
if(Mob.discDroppers.contains(aiAgent))
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user