From 7f0362e124b629e509722fbea4e544dfb27dd3d3 Mon Sep 17 00:00:00 2001 From: maru Date: Thu, 9 May 2024 07:30:19 -0400 Subject: [PATCH] Fix it for real this time --- src/system/game-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/game-data.ts b/src/system/game-data.ts index e342f337ac2..2be2ee15593 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -418,7 +418,7 @@ export class GameData { .then(response => response.text()) .then(response => { if (!response.length || response[0] !== '{') { - if (response.startsWith('no rows in result set')) { + if (response.startsWith('sql: no rows in result set')) { this.scene.queueMessage('Save data could not be found. If this is a new account, you can safely ignore this message.', null, true); return resolve(true); } else if (response.indexOf('Too many connections') > -1) {