style: misc formatting changes

This commit is contained in:
2026-04-13 01:08:17 -03:00
parent 7db8048469
commit b7aa912e1b
+4 -2
View File
@@ -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);
}
/*