Browse Source

mobs that spawn with no loot respawn again

lakebane-strongholds
FatBoy-DOTC 2 months ago
parent
commit
a963a331a2
  1. 17
      src/engine/mobileAI/MobAI.java

17
src/engine/mobileAI/MobAI.java

@ -864,16 +864,14 @@ public class MobAI { @@ -864,16 +864,14 @@ public class MobAI {
return;
}
//No items in inventory.
} else if (aiAgent.isHasLoot()) {
if (System.currentTimeMillis() > aiAgent.deathTime + MBServerStatics.DESPAWN_TIMER_ONCE_LOOTED) {
aiAgent.despawn();
aiAgent.deathTime = System.currentTimeMillis();
return;
}
//Mob never had Loot.
} else {
//Mob's Loot has been looted.
if (aiAgent.isHasLoot()) {
if (System.currentTimeMillis() > aiAgent.deathTime + MBServerStatics.DESPAWN_TIMER_ONCE_LOOTED) {
aiAgent.despawn();
aiAgent.deathTime = System.currentTimeMillis();
return;
}
//Mob never had Loot.
} else {
if (System.currentTimeMillis() > aiAgent.deathTime + MBServerStatics.DESPAWN_TIMER) {
aiAgent.despawn();
aiAgent.deathTime = System.currentTimeMillis();
@ -881,7 +879,6 @@ public class MobAI { @@ -881,7 +879,6 @@ public class MobAI {
}
}
}
}
if(Mob.discDroppers.contains(aiAgent))
return;

Loading…
Cancel
Save