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:
Sally Cochenour 2020-03-15 19:21:06 -04:00
parent d8e0bf61f6
commit 084901a8b1
2 changed files with 6 additions and 0 deletions

View file

@ -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;
} }

View file

@ -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;
} }
} }