From 1c73eca5ea49d6a606b42c2432277e852ee49c1e Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Fri, 7 Jul 2023 18:48:06 +0200 Subject: [PATCH] Remove "Please reinstall CORE!" notice --- coreinit.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coreinit.gd b/coreinit.gd index f896556..f264748 100644 --- a/coreinit.gd +++ b/coreinit.gd @@ -27,12 +27,12 @@ func _ready() -> void: get_tree().quit(143) return if get_node_or_null(NodePath("/root/Logger")) == null: - print("coreinit -> The CORE logger is missing in your autoload project settings! Please retry installing CORE.") + print("coreinit -> The CORE logger is missing in your autoload project settings!") await get_tree().create_timer(0.1).timeout get_tree().quit(144) return if get_node_or_null(NodePath("/root/Preprocessor")) == null: - print("coreinit -> The CORE preprocessor is missing in your autoload project settings! Please retry installing CORE.") + print("coreinit -> The CORE preprocessor is missing in your autoload project settings!") await get_tree().create_timer(0.1).timeout get_tree().quit(145) return