File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,9 @@ static func install_script_extension(child_script_path:String) -> void:
25
25
26
26
27
27
static func uninstall_script_extension (extension_script_path : String ) -> void :
28
-
29
28
# Currently this is the only thing we do, but it is better to expose
30
29
# this function like this for further changes
31
- ModLoader . _remove_extension (extension_script_path )
30
+ _ModLoaderScriptExtension . remove_specific_extension_from_script (extension_script_path )
32
31
33
32
34
33
# This function should be called only when actually necessary
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ static func remove_all_extensions_from_all_scripts() -> void:
153
153
154
154
155
155
# Used to remove a specific extension
156
- static func _remove_specific_extension_from_script (extension_path : String ) -> void :
156
+ static func remove_specific_extension_from_script (extension_path : String ) -> void :
157
157
# Check path to file exists
158
158
if not ModLoaderUtils .file_exists (extension_path ):
159
159
ModLoaderLog .error ("The extension script path \" %s \" does not exist" % [extension_path ], LOG_NAME )
You can’t perform that action at this time.
0 commit comments