Fix end sign rng off-by-one

This commit is contained in:
Craftyawesome 2025-01-02 02:30:43 -05:00
parent dd45f3cd61
commit a481878a61

View file

@ -8844,7 +8844,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
if (plistlen > 1)
{
// Pick another player in the server!
plistlen = P_RandomKey(PR_SPARKLE, plistlen+1);
plistlen = P_RandomKey(PR_SPARKLE, plistlen);
}
else
{