]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Key Hunt: fix regression introduced in xonotic/xonotic-data.pk3dir!1429 "Improve... master
authorterencehill <piuntn@gmail.com>
Wed, 2 Apr 2025 23:39:51 +0000 (01:39 +0200)
committerterencehill <piuntn@gmail.com>
Wed, 2 Apr 2025 23:39:51 +0000 (01:39 +0200)
where ghost key waypoints appeared while in warmup or spectating

qcsrc/common/gamemodes/gamemode/keyhunt/sv_keyhunt.qc

index a970be643fc83d3b115f5746118e2ade4a761aab..b764c588f1e0c927ba9aae414a65842a59f15565 100644 (file)
@@ -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;