From 04b41797b29dc84fdc36bc3ba7f5d48201c13043 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 1 Jul 2011 20:02:11 +0200 Subject: [PATCH] Use the id when centerprinting this warning msg, it was spammy since I removed the support to detect centerprints with the same msg but that don't provide an id --- qcsrc/server/arena.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/arena.qc b/qcsrc/server/arena.qc index 61de86157..1cc418d38 100644 --- a/qcsrc/server/arena.qc +++ b/qcsrc/server/arena.qc @@ -395,7 +395,7 @@ void Spawnqueue_Check() if (time > warntime) { FOR_EACH_PLAYER(self) - centerprint(self, "^1Need at least 1 player in each team to play CA"); + Send_CSQC_Centerprint_Generic(self, CPID_ROUND_STARTING, "^1Need at least 1 player in each team to play CA", 2, 0); warntime = time + 1; } return; -- 2.39.2