mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Simplified checks for ML_NETONLY and ML_NONET
This commit is contained in:
parent
2b70287b01
commit
d066fdc82f
1 changed files with 4 additions and 4 deletions
|
|
@ -6476,13 +6476,13 @@ void P_SpawnSpecials(INT32 fromnetsave)
|
|||
// set line specials to 0 here too, same reason as above
|
||||
if (netgame || multiplayer)
|
||||
{
|
||||
if ((lines[i].flags & ML_NONET) == ML_NONET)
|
||||
if (lines[i].flags & ML_NONET)
|
||||
{
|
||||
lines[i].special = 0;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else if ((lines[i].flags & ML_NETONLY) == ML_NETONLY)
|
||||
else if (lines[i].flags & ML_NETONLY)
|
||||
{
|
||||
lines[i].special = 0;
|
||||
continue;
|
||||
|
|
@ -9204,10 +9204,10 @@ static void P_SearchForDisableLinedefs(void)
|
|||
|
||||
if (netgame || multiplayer)
|
||||
{
|
||||
if ((lines[i].flags & ML_NONET) == ML_NONET)
|
||||
if (lines[i].flags & ML_NONET)
|
||||
continue;
|
||||
}
|
||||
else if ((lines[i].flags & ML_NETONLY) == ML_NETONLY)
|
||||
else if (lines[i].flags & ML_NETONLY)
|
||||
continue; // Net-only never triggers in single player
|
||||
|
||||
// Disable any linedef specials with our tag.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue