mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-24 22:41:27 +00:00
Kart Krew discovered a crash, and I was already fiddling around with this, so...
This commit is contained in:
parent
0ebff3820b
commit
16195d12db
1 changed files with 4 additions and 1 deletions
|
|
@ -9728,7 +9728,10 @@ void P_SpawnMapThing(mapthing_t *mthing)
|
|||
}
|
||||
|
||||
// check for players specially
|
||||
if (mthing->type > 0 && mthing->type <= 32)
|
||||
#if MAXPLAYERS > 32
|
||||
You should think about modifying the deathmatch starts to take full advantage of this!
|
||||
#endif
|
||||
if (mthing->type > 0 && mthing->type <= MAXPLAYERS)
|
||||
{
|
||||
// save spots for respawning in network games
|
||||
if (!metalrecording)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue