mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-20 21:52:33 +00:00
Fix Heavy Magician randomizer allowing a reroll to the same skin
This commit is contained in:
parent
23b4b83c7c
commit
d1143fee75
1 changed files with 1 additions and 1 deletions
|
|
@ -529,7 +529,7 @@ void SetRandomFakePlayerSkin(player_t* player, boolean fast, boolean instant)
|
|||
|
||||
for (i = 0; i < maxskinpick; i++)
|
||||
{
|
||||
if (i == player->lastfakeskin)
|
||||
if (i == player->lastfakeskin || i == player->fakeskin)
|
||||
continue;
|
||||
if (demo.playback)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue