Skip to content

Commit 00480b4

Browse files
committed
fix formatting
1 parent b74851d commit 00480b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Server/Components/LegacyConfig/config_main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ class LegacyConfigComponent final : public ILegacyConfigComponent, public Consol
212212
if (name.find("chatlogging") == 0)
213213
{
214214
auto it = dictionary.find("chatlogging");
215-
215+
216216
Impl::String lower(right);
217217
std::transform(lower.begin(), lower.end(), lower.begin(), [](unsigned char c)
218218
{
219219
return std::tolower(c);
220220
});
221-
221+
222222
if (lower == "true" || lower == "1")
223223
{
224224
config.setBool(it->second, true);
@@ -229,7 +229,7 @@ class LegacyConfigComponent final : public ILegacyConfigComponent, public Consol
229229
config.setBool(it->second, false);
230230
config.setBool("logging.log_deaths", false);
231231
}
232-
232+
233233
return true;
234234
}
235235

0 commit comments

Comments
 (0)