File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
addons/mod_loader/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ static func remove_all_extensions_from_all_scripts() -> void:
155
155
# Used to remove a specific extension
156
156
static func remove_specific_extension_from_script (extension_path : String ) -> void :
157
157
# Check path to file exists
158
- if not ModLoaderUtils .file_exists (extension_path ):
158
+ if not _ModLoaderFile .file_exists (extension_path ):
159
159
ModLoaderLog .error ("The extension script path \" %s \" does not exist" % [extension_path ], LOG_NAME )
160
160
return
161
161
@@ -200,7 +200,7 @@ static func remove_specific_extension_from_script(extension_path: String) -> voi
200
200
# Used to fully reset the provided script to a state prior of any extension
201
201
static func _remove_all_extensions_from_script (parent_script_path : String ) -> void :
202
202
# Check path to file exists
203
- if not ModLoaderUtils .file_exists (parent_script_path ):
203
+ if not _ModLoaderFile .file_exists (parent_script_path ):
204
204
ModLoaderLog .error ("The parent script path \" %s \" does not exist" % [parent_script_path ], LOG_NAME )
205
205
return
206
206
You can’t perform that action at this time.
0 commit comments