From 20bc1881082986bd5f35b6c7bfb608798d92ab5a Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Thu, 27 Dec 2012 19:19:01 -0500 Subject: [PATCH] Add warning for MSG_ALL --- qcsrc/common/notifications.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 1658d34a1..89fe61d3c 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -817,7 +817,8 @@ void Send_Notification(entity client, float broadcast, float net_type, float net WRITE_NOTIFICATION(MSG_BROADCAST) break; } - + + case MSG_ALL: { backtrace("DO NOT USE MSG_ALL FOR NOTIFICATIONS, IT IS BAD!\n"); break; } default: { backtrace("Unknown MSG_ type to write with!\n"); break; } } -- 2.39.2