From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/server/whitelist.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/server/whitelist.cc') diff --git a/game/server/whitelist.cc b/game/server/whitelist.cc index 2da1bf4..8a858c6 100644 --- a/game/server/whitelist.cc +++ b/game/server/whitelist.cc @@ -64,7 +64,8 @@ void whitelist::init_late(void) // to the global server password; this allows easier adding // of guest accounts which can later be edited to use a better password whitelist_map[line] = server_game::password_hash; - } else { + } + else { const auto username = line.substr(0, location); const auto password = line.substr(location + 1); whitelist_map[username] = math::crc64(password); -- cgit