Skip to content

Commit 9a672fb

Browse files
committed
fix: 🐛 missing %
1 parent c5e8336 commit 9a672fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/mod_loader/api/config.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static func update_config_value(config: ModConfig, key: String, new_data) -> Mod
118118
return null
119119

120120
if not typeof(config_data[key]) == typeof(new_data):
121-
ModLoaderLog.error("Update config value failed for \"%s\". There is a type mismatch between existing and new_data." [config.name], LOG_NAME)
121+
ModLoaderLog.error("Update config value failed for \"%s\". There is a type mismatch between existing and new_data." % [config.name], LOG_NAME)
122122
return null
123123

124124
config.data[key] = new_data

0 commit comments

Comments
 (0)