]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix broken domination control point waypoint
authorMario <mario.mario@y7mail.com>
Sun, 14 Apr 2013 02:06:33 +0000 (12:06 +1000)
committerMario <mario.mario@y7mail.com>
Sun, 14 Apr 2013 02:06:33 +0000 (12:06 +1000)
qcsrc/server/mutators/gamemode_domination.qc

index 051eaa333ff1c6b61ab4e47385cdc3411a2214dd..fc1902eaa2dffc5efb1d391ea35fcc3631c37876 100644 (file)
@@ -19,6 +19,7 @@ void dompoint_captured ()
 {
        entity head;
        float old_delay, old_team, real_team;
+       string msg;
 
        // now that the delay has expired, switch to the latest team to lay claim to this point
        head = self.owner;
@@ -74,8 +75,10 @@ void dompoint_captured ()
        SUB_UseTargets ();
        self.delay = old_delay;
        self.team = old_team;
+       
+       msg = strzone(strdecolorize(strcat("dom-", Team_ColorName_Lower(self.goalentity.team))));
 
-       WaypointSprite_UpdateSprites(self.sprite, strcat("dom-", Team_ColorName_Lower(self.goalentity.team)), "", "");
+       WaypointSprite_UpdateSprites(self.sprite, msg, "", "");
        
        total_pps = 0, pps_red = 0, pps_blue = 0, pps_yellow = 0, pps_pink = 0;
        for(head = world; (head = find(head, classname, "dom_controlpoint")) != world; )