mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fixed locked characters being visible in multiplayer select screen
This commit is contained in:
parent
4f04097066
commit
1c3a898bbb
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ boolean R_SkinUsable(INT32 playernum, INT32 skinnum)
|
|||
// Force 3.
|
||||
return true;
|
||||
}
|
||||
if (players[playernum].bot)
|
||||
if (playernum != -1 && players[playernum].bot)
|
||||
{
|
||||
//Force 4.
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue