Implements https://gitlab.com/xonotic/xonotic-data.pk3dir/-/issues/2702
entity tm = GetTeam(myteam, false);
if (tm && tm.team != NUM_SPECTATOR && tm.team_size == ts_max)
s = strcat(s, sprintf(_(" Press ^3%s%s to adjust"), getcommandkey(_("team selection"), "team_selection_show"), blinkcolor));
+ fontsize *= 1.125; // perfect float
+ draw_beginBoldFont();
InfoMessage(s);
+ draw_endBoldFont();
+ fontsize /= 1.125;
}
}
(swap ? subtimer_str : timer_str), timer_size,
(swap ? subtimer_color : timer_color), panel_fg_alpha, DRAWFLAG_NORMAL);
- draw_endBoldFont();
-
if(subtext)
drawstring_aspect(pos + eY * timer_size.y, subtext, subtext_size, '0 1 0', panel_fg_alpha, DRAWFLAG_NORMAL);
+
+ draw_endBoldFont();
}