From 73266ec1d960a7eefc5faf69fb4fe265d010247d Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Fri, 4 Jun 2021 17:13:42 +0200 Subject: [PATCH] fix: Fixed correct settings path (#4) Co-authored-by: Dennis Ploeger --- addons/escoria-core/game/core-scripts/esc/types/esc_command.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/escoria-core/game/core-scripts/esc/types/esc_command.gd b/addons/escoria-core/game/core-scripts/esc/types/esc_command.gd index a983308b..db6fccba 100644 --- a/addons/escoria-core/game/core-scripts/esc/types/esc_command.gd +++ b/addons/escoria-core/game/core-scripts/esc/types/esc_command.gd @@ -80,7 +80,7 @@ func _init(command_string): # Check, if conditions match func is_valid() -> bool: var command_found = false - for base_path in ProjectSettings.get("escoria/esc/command_directories"): + for base_path in ProjectSettings.get("escoria/main/command_directories"): var command_path = "%s/%s.gd" % [ base_path, self.name