Remove "Please reinstall CORE!" notice
This commit is contained in:
parent
8d73c97a3e
commit
1c73eca5ea
1 changed files with 2 additions and 2 deletions
|
@ -27,12 +27,12 @@ func _ready() -> void:
|
||||||
get_tree().quit(143)
|
get_tree().quit(143)
|
||||||
return
|
return
|
||||||
if get_node_or_null(NodePath("/root/Logger")) == null:
|
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
|
await get_tree().create_timer(0.1).timeout
|
||||||
get_tree().quit(144)
|
get_tree().quit(144)
|
||||||
return
|
return
|
||||||
if get_node_or_null(NodePath("/root/Preprocessor")) == null:
|
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
|
await get_tree().create_timer(0.1).timeout
|
||||||
get_tree().quit(145)
|
get_tree().quit(145)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue