Skip to content

Commit

Permalink
Fix autobalance notice not using sanitiseNewlines
Browse files Browse the repository at this point in the history
  • Loading branch information
Medo42 committed May 16, 2016
1 parent c6ae66d commit 4a3a258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/gg2/Objects/InGameElements/Balancer.events/Draw.xml
Expand Up @@ -32,7 +32,7 @@
draw_set_halign(fa_left);

if notice == 0 draw_text_ext_color(xoffset+50, (yoffset+ysize)-100,"Teams are imbalanced and will be auto-balanced shortly.",-1,-1,c_white,c_white,c_white,c_white,alpha);
if notice == 1 draw_text_ext_color(xoffset+50, (yoffset+ysize)-100,name+" has been team switched for balance",-1,-1,c_white,c_white,c_white,c_white,alpha);
if notice == 1 draw_text_ext_color(xoffset+50, (yoffset+ysize)-100,sanitiseNewlines(name)+" has been team switched for balance",-1,-1,c_white,c_white,c_white,c_white,alpha);

}
</argument>
Expand Down

0 comments on commit 4a3a258

Please sign in to comment.