X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fbot%2Fdefault%2Fwaypoints.qc;fp=qcsrc%2Fserver%2Fbot%2Fdefault%2Fwaypoints.qc;h=bb53d61e02345e6af13142e2ad7e8eddbf0daa44;hp=d2d0aa15c86a2aa02399c3058fb57f6eb7668e7d;hb=e3b57e7c812da74f0aed7c8b1b50d6760a51b357;hpb=772fb683d951a622cc8520827096ec34fdea4763 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; }