From b7aa912e1b3454349f3d3857dcea23e3dd98d3c8 Mon Sep 17 00:00:00 2001 From: neru Date: Mon, 13 Apr 2026 01:08:17 -0300 Subject: [PATCH] style: misc formatting changes --- src/unlocker/spoofing.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } /*