From d022a20c3692e96d06914432499d8b8abb2656fd Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sat, 22 Feb 2025 02:15:47 -0500 Subject: [PATCH] update error to be more understandable --- src/k_waypoint.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/k_waypoint.cpp b/src/k_waypoint.cpp index 8aa3833f4..ab110798f 100644 --- a/src/k_waypoint.cpp +++ b/src/k_waypoint.cpp @@ -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 {