mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
EBC: Auto tie should kick in after turn 1000 ends
This commit is contained in:
parent
9fd696977c
commit
f5011b81ec
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user