mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Kart Krew discovered a crash, and I was already fiddling around with this, so...
This commit is contained in:
parent
30843fecb6
commit
adc0e3d6c3
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…
Reference in a new issue