From f5011b81ecbd76778dd9e59f41b206ee927d91f3 Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:16:28 -0700 Subject: [PATCH] EBC: Auto tie should kick in after turn 1000 ends --- sim/battle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/battle.ts b/sim/battle.ts index 9b2c59cdc9..e4c6e2ee87 100644 --- a/sim/battle.ts +++ b/sim/battle.ts @@ -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;