Skip to content

Commit 226be3e

Browse files
committed
🔨 fixed missing mod_name argument
1 parent e948aa2 commit 226be3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loader/mod_loader.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ func get_flat_view_dict(p_dir = "res://", p_match = "", p_match_is_regex = false
571571
func installScriptExtension(childScriptPath:String):
572572
# Check path to file exists
573573
if !File.new().file_exists(childScriptPath):
574-
mod_log("ModLoader: ERROR - The child script path '%s' does not exist" % [childScriptPath])
574+
mod_log("ERROR - The child script path '%s' does not exist" % [childScriptPath], LOG_NAME)
575575
return
576576

577577
var childScript = ResourceLoader.load(childScriptPath)

0 commit comments

Comments
 (0)