We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75661ba commit c297268Copy full SHA for c297268
addons/dialogic/plugin.gd
@@ -41,8 +41,9 @@ func _enter_tree() -> void:
41
42
# Auto-update the singleton path for alpha users
43
# TODO remove at some point during beta or later
44
- if not "Core" in ProjectSettings.get_setting("autoload/"+PLUGIN_NAME, ""):
45
- remove_autoload_singleton(PLUGIN_NAME)
+ if not ProjectSettings.has_setting("autoload/"+PLUGIN_NAME) or not "Core" in ProjectSettings.get_setting("autoload/"+PLUGIN_NAME, ""):
+ if ProjectSettings.has_setting("autoload/"+PLUGIN_NAME):
46
+ remove_autoload_singleton(PLUGIN_NAME)
47
add_autoload_singleton(PLUGIN_NAME, PLUGIN_HANDLER_PATH)
48
49
0 commit comments