Skip to content

Commit ff43f0b

Browse files
committed
fix log string
1 parent f6a93e9 commit ff43f0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addons/mod_loader/mod_loader.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ func _init() -> void:
121121
# https://github.com/godotengine/godot/issues/16798
122122
if is_in_editor:
123123
ModLoaderLog.hint(
124-
"Loading any resource packs (.zip/.pck) with `load_resource_pack` will WIPE the entire virtual res:// directory.
125-
If you have any unpacked mods in %s, they will not be loaded.Please unpack your mod ZIPs instead, and add them to %s" %
124+
"Loading any resource packs (.zip/.pck) with `load_resource_pack` will WIPE the entire virtual res:// directory. " +
125+
"If you have any unpacked mods in %s, they will not be loaded.Please unpack your mod ZIPs instead, and add them to %s" %
126126
[_ModLoaderPath.get_unpacked_mods_dir_path(), _ModLoaderPath.get_unpacked_mods_dir_path()], LOG_NAME, true
127127
)
128128

0 commit comments

Comments
 (0)