Extra parens removed

This commit is contained in:
2023-10-23 14:12:20 -04:00
parent de832ff497
commit 3f59ed48d2
+1 -1
View File
@@ -814,7 +814,7 @@ public class MobAI {
}
}
}
} else if (System.currentTimeMillis() > (aiAgent.deathTime + (aiAgent.spawnDelay * 1000L))) {
} else if (System.currentTimeMillis() > aiAgent.deathTime + (aiAgent.spawnDelay * 1000L)) {
aiAgent.respawnTime = aiAgent.deathTime + (aiAgent.spawnDelay * 1000L);
Respawner.respawnQueue.put(aiAgent);
}