From: Samual Lenks Date: Fri, 28 Dec 2012 00:19:01 +0000 (-0500) Subject: Add warning for MSG_ALL X-Git-Tag: xonotic-v0.7.0~62^2~23^2~317 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=20bc1881082986bd5f35b6c7bfb608798d92ab5a;p=xonotic%2Fxonotic-data.pk3dir.git Add warning for MSG_ALL --- 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; } }