From 317c8562e4f4d3dd8569175e84f822af2d851a3d Mon Sep 17 00:00:00 2001 From: Sheldon Johnson Date: Fri, 10 May 2024 01:23:03 +1000 Subject: [PATCH] Make flag pickup a little less obnoxious --- csqc/status.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csqc/status.qc b/csqc/status.qc index 380e14f5..00b40211 100644 --- a/csqc/status.qc +++ b/csqc/status.qc @@ -607,7 +607,7 @@ void(PanelID panelid, string text) drawNotificationPanel = { } } } else if (pick_up_time && time < pick_up_time + 1.5) { - local vector alert_text_size = MENU_TEXT_MEDIUM * panel.Scale; + local vector alert_text_size = MENU_TEXT_SMALL * panel.Scale; local vector alert_text_position; alert_text_position.y = ScreenSize.y / 3; alert_text_position.x = (ScreenSize.x / 2) - (size.x / 2);