From 7d13257ab8cd25177ae7e2991f4e6fae6869d92a Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 9 Nov 2018 16:28:23 +0100 Subject: [PATCH 1/1] Fix removal of the locked waypoint --- qcsrc/server/bot/default/waypoints.qc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qcsrc/server/bot/default/waypoints.qc b/qcsrc/server/bot/default/waypoints.qc index bd5d13e2ce..84cca9fe2c 100644 --- a/qcsrc/server/bot/default/waypoints.qc +++ b/qcsrc/server/bot/default/waypoints.qc @@ -1530,6 +1530,10 @@ void botframe_showwaypointlinks() FOREACH_CLIENT(IS_PLAYER(it) && !it.isbot, { int display_type = 0; + if (wasfreed(it.wp_aimed)) + it.wp_aimed = NULL; + if (wasfreed(it.wp_locked)) + it.wp_locked = NULL; if (PHYS_INPUT_BUTTON_USE(it)) it.wp_locked = it.wp_aimed; entity head = it.wp_locked; -- 2.39.2