From 76c3ed1afa5bd9a4c16b895d29d6dc7e57171d48 Mon Sep 17 00:00:00 2001 From: somebody Date: Mon, 28 Nov 2022 22:04:48 -0600 Subject: [PATCH] Unsave game on wi image change --- aiserver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiserver.py b/aiserver.py index 730edc74..90f019fa 100644 --- a/aiserver.py +++ b/aiserver.py @@ -8826,6 +8826,7 @@ def UI_2_set_wi_image(uid): else: # Otherwise assign image koboldai_vars.worldinfo_v2.image_store[uid] = data + koboldai_vars.gamesaved = False return ":)" @app.route("/get_wi_image/", methods=["GET"])