From ce60be962993351db5583bcf07980d5b42945194 Mon Sep 17 00:00:00 2001 From: Evan Date: Sat, 4 Jan 2025 13:53:47 -0800 Subject: [PATCH] don't alert on crash, use modal instead --- src/client/GameRunner.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/GameRunner.ts b/src/client/GameRunner.ts index 40cfaf0ab..444f39e1f 100644 --- a/src/client/GameRunner.ts +++ b/src/client/GameRunner.ts @@ -190,7 +190,6 @@ export class GameRunner { this.stop() const errorText = `Error: ${error.message}\nStack: ${error.stack}`; consolex.error(errorText) - alert(`Game crashed! client id: ${this.clientID}\n Please paste the following in your bug report in Discord:\n` + errorText); } this.renderer.tick() this.currTurn++