EBC: Auto tie should kick in after turn 1000 ends

This commit is contained in:
Kris Johnson 2026-01-10 20:16:28 -07:00
parent 9fd696977c
commit f5011b81ec

View File

@ -1790,7 +1790,7 @@ export class Battle {
if (this.turn <= 100) return;
// the turn limit is not a part of Endless Battle Clause
if (this.turn >= 1000) {
if (this.turn > 1000) {
this.add('message', `It is turn 1000. You have hit the turn limit!`);
this.tie();
return true;