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)); } }