From 15582332ca156d4c12ec24dc9399b1adf6c9f4c2 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 31 Oct 2015 13:04:51 +1000 Subject: [PATCH] We keep running into these limits, increase by 100 --- qcsrc/common/notifications.qh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qcsrc/common/notifications.qh b/qcsrc/common/notifications.qh index ff5d85c2a..e1779b613 100644 --- a/qcsrc/common/notifications.qh +++ b/qcsrc/common/notifications.qh @@ -574,11 +574,11 @@ float NOTIF_MULTI_COUNT; float NOTIF_CHOICE_COUNT; // notification limits -- INCREASE AS NECESSARY -const float NOTIF_ANNCE_MAX = 200; -const float NOTIF_INFO_MAX = 350; -const float NOTIF_CENTER_MAX = 250; -const float NOTIF_MULTI_MAX = 200; -const float NOTIF_CHOICE_MAX = 30; +const float NOTIF_ANNCE_MAX = 400; +const float NOTIF_INFO_MAX = 450; +const float NOTIF_CENTER_MAX = 350; +const float NOTIF_MULTI_MAX = 300; +const float NOTIF_CHOICE_MAX = 50; // notification entities entity msg_annce_notifs[NOTIF_ANNCE_MAX]; -- 2.39.2