1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Merge pull request #3758 from janisozaur/fixes

Fixes
This commit is contained in:
Ted John
2016-05-27 20:57:14 +01:00
2 changed files with 21 additions and 8 deletions

View File

@@ -1154,7 +1154,7 @@ void Network::KickPlayer(int playerId)
void Network::SetPassword(const char* password)
{
Network::password = password;
Network::password = password == nullptr ? "" : password;
}
void Network::ShutdownClient()