mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add warnings for old map setups
We probably don't want to keep these for release, but we need reminders to get rid of them ourselves :V
This commit is contained in:
parent
d8e0bf61f6
commit
084901a8b1
2 changed files with 6 additions and 0 deletions
|
|
@ -10650,6 +10650,10 @@ mobj_t *P_SpawnMobj(fixed_t x, fixed_t y, fixed_t z, mobjtype_t type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case MT_BOSS3WAYPOINT:
|
||||||
|
// Remove before release
|
||||||
|
CONS_Alert(CONS_WARNING, "Boss waypoints are deprecated. Did you forget to remove the old checkpoints, too?\n");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5801,6 +5801,8 @@ void P_SpawnSpecials(INT32 fromnetsave)
|
||||||
switch(GETSECSPECIAL(sector->special, 4))
|
switch(GETSECSPECIAL(sector->special, 4))
|
||||||
{
|
{
|
||||||
case 10: // Circuit finish line (Unused)
|
case 10: // Circuit finish line (Unused)
|
||||||
|
// Remove before release
|
||||||
|
CONS_Alert(CONS_WARNING, "Finish line sector type is deprecated.\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue