mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-24 23:46:16 +00:00
Merge branch 'fix-magician-dupe' into 'master'
Fix Heavy Magician randomizer allowing a reroll to the same skin See merge request kart-krew-dev/ring-racers-internal!2689
This commit is contained in:
commit
ebc8eafa5c
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