From c096931ca06e3efdbe21e801de88472de276d298 Mon Sep 17 00:00:00 2001 From: Noah Date: Sat, 29 Oct 2022 13:18:50 -0500 Subject: [PATCH] Set 'current_version' to NULL to delete from store --- Main_menu.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main_menu.gd b/Main_menu.gd index a771b7f..1b6908d 100644 --- a/Main_menu.gd +++ b/Main_menu.gd @@ -181,7 +181,7 @@ func _on_Play_button_pressed(): # If not, else: notice("Executable not found! Click 'UPDATE' to install it again", "alert") - Store.write_store("current_version", "") + Store.write_store("current_version", null) # When the background change timer time's out, func _on_Change_timer_timeout():