From: terencehill Date: Fri, 2 Aug 2019 09:47:39 +0000 (+0200) Subject: Clarify some messages X-Git-Tag: xonotic-v0.8.5~1356^2~13 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e3b57e7c812da74f0aed7c8b1b50d6760a51b357;p=xonotic%2Fxonotic-data.pk3dir.git Clarify some messages --- diff --git a/qcsrc/server/bot/default/waypoints.qc b/qcsrc/server/bot/default/waypoints.qc index d2d0aa15c8..bb53d61e02 100644 --- a/qcsrc/server/bot/default/waypoints.qc +++ b/qcsrc/server/bot/default/waypoints.qc @@ -812,7 +812,7 @@ void waypoint_remove_fromeditor(entity pl) if (waypoint_has_hardwiredlinks(e)) { - LOG_INFO("Can't remove a waypoint with hardwired links, remove them with \"wpeditor hardwire\" first\n"); + LOG_INFO("Can't remove a waypoint with hardwired links, remove links with \"wpeditor hardwire\" first\n"); return; } @@ -1469,7 +1469,8 @@ void waypoint_load_hardwiredlinks() if(!found) { - LOG_INFO("NOTICE: Can not find origin waypoint for the hardwired link ", s, ". Path skipped"); + s = strcat(((is_special) ? "special link " : "hardwired link "), s); + LOG_INFO("NOTICE: Can not find origin waypoint of the ", s, ". Path skipped"); continue; } } @@ -1490,7 +1491,8 @@ void waypoint_load_hardwiredlinks() if(!found) { - LOG_INFO("NOTICE: Can not find destination waypoint for the hardwired link ", s, ". Path skipped"); + s = strcat(((is_special) ? "special link " : "hardwired link "), s); + LOG_INFO("NOTICE: Can not find destination waypoint of the ", s, ". Path skipped"); continue; }