From 8e8aeef0f7277a95aacf015fc80d80b63af4b9ab Mon Sep 17 00:00:00 2001 From: Up Date: Wed, 8 May 2024 01:12:06 +0200 Subject: [PATCH] Revert "one slot only?" This reverts commit 20997e9cd8efc9e94522978e15dfc490e13aba8a. --- db/savedata.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/savedata.go b/db/savedata.go index b3bbdd6..1f48953 100644 --- a/db/savedata.go +++ b/db/savedata.go @@ -81,7 +81,7 @@ func ReadSessionSaveData(uuid []byte, slot int) (defs.SessionSaveData, error) { func GetLatestSessionSaveDataSlot(uuid []byte) (int, error) { var slot int - err := handle.QueryRow("SELECT slot FROM sessionSaveData WHERE uuid = ? ORDER BY timestamp DESC LIMIT 1", uuid).Scan(&slot) + err := handle.QueryRow("SELECT slot FROM sessionSaveData WHERE uuid = ? ORDER BY timestamp DESC, slot ASC LIMIT 1", uuid).Scan(&slot) if err != nil { return -1, err }