From 9b0196b16c6572496d345a9cb4a6d941079ca1bb Mon Sep 17 00:00:00 2001 From: AJ Fontaine <36677462+Fontbane@users.noreply.github.com> Date: Mon, 3 Jun 2024 18:54:36 -0400 Subject: [PATCH] Add token version to session save data --- defs/savedata.go | 1 + 1 file changed, 1 insertion(+) diff --git a/defs/savedata.go b/defs/savedata.go index 1d63603..4e33be2 100644 --- a/defs/savedata.go +++ b/defs/savedata.go @@ -107,6 +107,7 @@ type SessionSaveData struct { Trainer TrainerData `json:"trainer"` GameVersion string `json:"gameVersion"` Timestamp int `json:"timestamp"` + TokenVersion int `json:"tokenVersion"` } type GameMode int