diff --git a/TODO.txt b/TODO.txt index ce4304cce..5637c09ad 100644 --- a/TODO.txt +++ b/TODO.txt @@ -232,7 +232,7 @@ * store in BigQuery DONE 12/10/2024 * remove dash from game id DONE 12/11/2024 * bug: transport display event when it lands DONE 12/11/2024 -* have crash print stacktrace +* have crash print stacktrace DONE 12/11/2024 * bug: name not updating location in spawn phase * allow longer names and allow them to be displayed in the Rank UI not be cut * make boats work on oceania diff --git a/src/client/GameRunner.ts b/src/client/GameRunner.ts index cfda897f3..eca5d4e94 100644 --- a/src/client/GameRunner.ts +++ b/src/client/GameRunner.ts @@ -183,7 +183,6 @@ export class GameRunner { this.gs.addExecution(...this.executor.createExecs(this.turns[this.currTurn])) try { this.gs.executeNextTick() - throw new Error('test') } catch (error) { const errorText = `Error: ${error.message}\nStack: ${error.stack}`; alert("Game crashed!\n Please paste the following your bug report in Discord:\n" + errorText);