I continue to be a buffoon.

This commit is contained in:
TehRealSalt 2018-05-31 19:21:26 -04:00
parent 7d021ae1e6
commit 7da0ff595e
1 changed files with 6 additions and 3 deletions

View File

@ -3204,9 +3204,12 @@ INT16 G_RandMap(INT16 tolflags, INT16 pprevmap, boolean dontadd, boolean ignoreb
else
{
ix = okmaps[M_RandomKey(numokmaps)];
for (bufx = NUMMAPS; bufx > 0; bufx--)
randmapbuffer[bufx] = randmapbuffer[bufx-1];
randmapbuffer[0] = ix;
if (!dontadd)
{
for (bufx = NUMMAPS; bufx > 0; bufx--)
randmapbuffer[bufx] = randmapbuffer[bufx-1];
randmapbuffer[0] = ix;
}
}
Z_Free(okmaps);