uniform disc dropper times

This commit is contained in:
2024-07-04 19:14:00 -05:00
parent 9bd03c7d43
commit b30f04046d
5 changed files with 25 additions and 6 deletions
+4 -2
View File
@@ -871,10 +871,12 @@ public class MobAI {
}
}
}
} else if (System.currentTimeMillis() > (aiAgent.deathTime + (aiAgent.spawnTime * 1000))) {
} else if (System.currentTimeMillis() > (aiAgent.deathTime + (aiAgent.spawnTime * 1000L))) {
if(Mob.discDroppers.contains(aiAgent))
return;
if (Zone.respawnQue.contains(aiAgent) == false) {
if (!Zone.respawnQue.contains(aiAgent)) {
Zone.respawnQue.add(aiAgent);
}
}