From 9cac9919c356147a709708cbc1c575f64e048442 Mon Sep 17 00:00:00 2001 From: Scott Anderson <662325+scottanderson@users.noreply.github.com> Date: Mon, 14 Apr 2025 20:42:10 -0400 Subject: [PATCH] SpawnExecution --- src/core/execution/SpawnExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/SpawnExecution.ts b/src/core/execution/SpawnExecution.ts index 23de206e6..add0550a4 100644 --- a/src/core/execution/SpawnExecution.ts +++ b/src/core/execution/SpawnExecution.ts @@ -39,7 +39,7 @@ export class SpawnExecution implements Execution { if (!player.hasSpawned()) { this.mg.addExecution(new PlayerExecution(player.id())); - if (player.type() == PlayerType.Bot) { + if (player.type() === PlayerType.Bot) { this.mg.addExecution(new BotExecution(player)); } }