update error to be more understandable
This commit is contained in:
parent
553001a6bf
commit
d022a20c36
1 changed files with 8 additions and 2 deletions
|
|
@ -2779,7 +2779,10 @@ boolean K_SetupWaypointList(void)
|
|||
|
||||
if (!waypointcap)
|
||||
{
|
||||
CONS_Alert(CONS_ERROR, "No waypoints in map.\n");
|
||||
if (numbosswaypoints == 0)
|
||||
{
|
||||
CONS_Alert(CONS_ERROR, "No waypoints or legacy checkpoints in map.\n");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -2796,7 +2799,10 @@ boolean K_SetupWaypointList(void)
|
|||
|
||||
if (firstwaypoint == NULL)
|
||||
{
|
||||
CONS_Alert(CONS_ERROR, "No waypoints in map.\n");
|
||||
if (numbosswaypoints == 0)
|
||||
{
|
||||
CONS_Alert(CONS_ERROR, "No waypoints or legacy checkpoints in map.\n");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue