From e4a46772fd68ab83ee951a156b9bcfc2b52052e5 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 23 Oct 2013 20:36:45 +1100 Subject: [PATCH] Fix compile error --- qcsrc/server/mutators/gamemode_onslaught.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/mutators/gamemode_onslaught.qc b/qcsrc/server/mutators/gamemode_onslaught.qc index 235fc2e43..8bbe4bdc2 100644 --- a/qcsrc/server/mutators/gamemode_onslaught.qc +++ b/qcsrc/server/mutators/gamemode_onslaught.qc @@ -422,7 +422,7 @@ void onslaught_generator_think() self.wait = time + 5; FOR_EACH_REALPLAYER(e) { - if not(IsDifferentTeam(e, self)) + if(SAME_TEAM(e, self)) { Send_Notification(NOTIF_ONE, e, MSG_CENTER, CENTER_ONS_NOTSHIELDED); soundto(MSG_ONE, e, CHAN_AUTO, "kh/alarm.wav", VOL_BASE, ATTEN_NONE); // FIXME: Uniqe sound? -- 2.39.2