Remove "Please reinstall CORE!" notice

This commit is contained in:
JeremyStar™ 2023-07-07 18:48:06 +02:00
parent 8d73c97a3e
commit 1c73eca5ea

View file

@ -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