From 63c095c2971cc3e9bfd859df05bafbde15ce92c3 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Wed, 10 Apr 2024 21:34:12 +0200 Subject: [PATCH] Fix "invalid call" --- src/core.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.gd b/src/core.gd index 36df126..f072490 100644 --- a/src/core.gd +++ b/src/core.gd @@ -166,8 +166,8 @@ func reload_configuration(new_config: CoreConfiguration = CoreConfiguration.new( ## [b]Danger: [i]Don't call this.[/i][/b] func apply_configuration() -> void: if loggeri != null: loggeri.verb("Applying configuration") - if is_devmode(): if loggeri != null: loggeri.warn("The CORE Framework is in development mode. Here be dragons!") - if config.headless: loggeri.warn("CORE is in headless mode. Certain modules will not work as expected.") + if is_devmode() and loggeri != null: loggeri.warn("The CORE Framework is in development mode. Here be dragons!") + if config.headless and loggeri != null: loggeri.warn("CORE is in headless mode. Certain modules will not work as expected.") if !config.custom_modules: if loggeri != null: loggeri.verb("Removing all custom modules (custom modules support is disabled)") for module in custom_modules: unregister_custom_module(module)