mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-26 04:30:55 +00:00
Only set the picked character once
This commit is contained in:
parent
062af20628
commit
e106b56b53
1 changed files with 6 additions and 1 deletions
|
@ -1288,8 +1288,13 @@ static void SendNameAndColor(void)
|
|||
SetPlayerSkin(consoleplayer, cv_skin.string);
|
||||
}
|
||||
}
|
||||
else
|
||||
else if (pickedchar != -1)
|
||||
{
|
||||
SetPlayerSkinByNum(consoleplayer, pickedchar);
|
||||
pickedchar = -1;
|
||||
}
|
||||
else
|
||||
SetPlayerSkin(consoleplayer, cv_skin.string);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue