Fix other mistake in the component

This commit is contained in:
FutureRave 2022-02-10 19:45:00 +00:00
parent 95e77ca6c6
commit 12677a0f93
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955

View File

@ -238,7 +238,7 @@ namespace Components
{
const auto* mapname = ArenaLength::NewArenas[i % *Game::arenaCount].mapName;
if (!(i % 2)) command.append(Utils::String::VA("wait 250;disconnect;wait 750;", mapname)); // Test a disconnect
if (!(i % 2)) command.append("wait 250;disconnect;wait 750;"); // Test a disconnect
else command.append("wait 500;"); // Test direct map switch
command.append(Utils::String::VA("map %s;", mapname));
}