From dd1795ff7d6786e2ab79267e3dbbcb893b0121b0 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 8 Feb 2013 11:23:40 +1100 Subject: [PATCH] Only show monster waypoints to the monster's team --- qcsrc/server/mutators/gamemode_rts.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/mutators/gamemode_rts.qc b/qcsrc/server/mutators/gamemode_rts.qc index c9a570571..edef364c3 100644 --- a/qcsrc/server/mutators/gamemode_rts.qc +++ b/qcsrc/server/mutators/gamemode_rts.qc @@ -141,7 +141,7 @@ MUTATOR_HOOKFUNCTION(rts_PlayerThink) wp.owner = self; // hmm... wp.think = rts_waypoint_think; wp.nextthink = time; - WaypointSprite_Spawn("Waypoint", 0, 0, wp, '0 0 10', world, 0, wp, sprite, FALSE, RADARICON_DANGER, ((teamplay) ? TeamColor(self.team) : '1 0 0')); + WaypointSprite_Spawn("Here", 0, 0, wp, '0 0 10', world, self.team, wp, sprite, FALSE, RADARICON_DANGER, ((teamplay) ? TeamColor(self.team) : '1 0 0')); setorigin(wp, self.cursor_trace_endpos); } -- 2.39.2