diff --git a/src/unlocker/spoofing.cpp b/src/unlocker/spoofing.cpp index e6f6c64..0cfad01 100644 --- a/src/unlocker/spoofing.cpp +++ b/src/unlocker/spoofing.cpp @@ -183,13 +183,15 @@ void Spoofer::loadConfig() json defaultConfig = {{"spoofCharacterOwnership", _config.spoofCharacterOwnership}, {"spoofInventory", _config.spoofInventory}, {"spoofCustomization", _config.spoofCustomization}, - {"accessKey", _config.accessKey}, {"keyId", _config.keyId}}; + {"accessKey", _config.accessKey}, + {"keyId", _config.keyId}}; std::ofstream out(configPath); out << defaultConfig.dump(4); } Log::info("Loaded config: Ownership={}, Inventory={}, Customization={}, AccessKey={}, keyId={}", - _config.spoofCharacterOwnership, _config.spoofInventory, _config.spoofCustomization, _config.accessKey, _config.keyId); + _config.spoofCharacterOwnership, _config.spoofInventory, _config.spoofCustomization, _config.accessKey, + _config.keyId); } /*