Merge pull request #229 from igniuss/patch-1

Fixed Lobby.Joinable
This commit is contained in:
Garry Newman 2019-04-30 16:39:02 +01:00 committed by GitHub
commit 4237204f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,7 +366,7 @@ public bool Joinable
{
if ( !IsValid ) { return false; }
string joinable = CurrentLobbyData.GetData( "joinable" );
switch ( joinable )
switch ( joinable.ToLowerInvariant() )
{
case "true":
return true;