mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix end sign rng off-by-one
This commit is contained in:
parent
dd45f3cd61
commit
a481878a61
1 changed files with 1 additions and 1 deletions
|
|
@ -8844,7 +8844,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
||||||
if (plistlen > 1)
|
if (plistlen > 1)
|
||||||
{
|
{
|
||||||
// Pick another player in the server!
|
// Pick another player in the server!
|
||||||
plistlen = P_RandomKey(PR_SPARKLE, plistlen+1);
|
plistlen = P_RandomKey(PR_SPARKLE, plistlen);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue