From: terencehill Date: Wed, 2 Apr 2025 23:39:51 +0000 (+0200) Subject: Key Hunt: fix regression introduced in xonotic/xonotic-data.pk3dir!1429 "Improve... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e2fef3744944517bb0cd1646f389da29b48a55fe;p=xonotic%2Fxonotic-data.pk3dir.git 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 --- 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;