From 94ef28e556b34dc138cdd9b9af0b50de3ec62443 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Fri, 25 Oct 2024 22:20:14 +0500 Subject: fix: game save widget wasn't updated in the session if a save was already created --- core/src/kz/ilotterytea/maxon/player/Savegame.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/src/kz/ilotterytea/maxon/player') diff --git a/core/src/kz/ilotterytea/maxon/player/Savegame.java b/core/src/kz/ilotterytea/maxon/player/Savegame.java index e83aec4..b9f3cde 100644 --- a/core/src/kz/ilotterytea/maxon/player/Savegame.java +++ b/core/src/kz/ilotterytea/maxon/player/Savegame.java @@ -189,4 +189,8 @@ public class Savegame implements Serializable { public boolean isNewlyCreated() { return isNewlyCreated; } + + public void setNewlyCreated(boolean newlyCreated) { + isNewlyCreated = newlyCreated; + } } -- cgit v1.2.3