From f9372452cf3e78b9fb59f56d0917c3b0a9af3606 Mon Sep 17 00:00:00 2001 From: RhenaudTheLukark Date: Mon, 29 Jan 2024 11:13:07 +0100 Subject: [PATCH] [Fix] Made cursor visible again at the end of the encounter --- Assets/Scripts/Battle/UIController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/Battle/UIController.cs b/Assets/Scripts/Battle/UIController.cs index 677eb5341..e80a0468b 100644 --- a/Assets/Scripts/Battle/UIController.cs +++ b/Assets/Scripts/Battle/UIController.cs @@ -155,6 +155,7 @@ public static void EndBattle(bool fromGameOver = false) { LuaScriptBinder.ClearBattleVar(); GlobalControls.stopScreenShake = true; + Cursor.visible = true; MusicManager.hiddenDictionary.Clear(); if (GlobalControls.modDev) { List toDelete = NewMusicManager.audioname.Keys.Where(str => str != "src").ToList();