From e2fef3744944517bb0cd1646f389da29b48a55fe Mon Sep 17 00:00:00 2001 From: terencehill Date: Thu, 3 Apr 2025 01:39:51 +0200 Subject: [PATCH] Key Hunt: fix regression introduced in xonotic/xonotic-data.pk3dir!1429 "Improve ka/tka/kh waypoint options" where ghost key waypoints appeared while in warmup or spectating --- qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc b/qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc index a970be643..b764c588f 100644 --- a/qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc +++ b/qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc @@ -111,7 +111,8 @@ bool kh_KeyCarrier_waypointsprite_visible_for_player(entity this, entity player, bool kh_Key_waypointsprite_visible_for_player(entity this, entity player, entity view) { - if(IS_SPEC(player) || warmup_stage) + // always show the dropped key waypoint while in warmup or spectating + if(this.owner && !this.owner.owner && (IS_SPEC(player) || warmup_stage)) return true; if(!kh_tracking_enabled) return false; -- 2.39.5