From 4312e9e4b06651fff165eff9e27dcd120113a12a Mon Sep 17 00:00:00 2001 From: LegendaryGuard Date: Wed, 13 Oct 2021 00:28:34 +0200 Subject: [PATCH] Fix conditionals in FragCenterMessage --- qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc b/qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc index ba391d8af..5e804c490 100644 --- a/qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc +++ b/qcsrc/common/gamemodes/gamemode/mmm/sv_mmm.qc @@ -426,7 +426,7 @@ MUTATOR_HOOKFUNCTION(mmm, FragCenterMessage) // Conditions that count as team kill in MMM if((attacker.mmm_status == targ.mmm_status) || (attacker.mmm_status == MMM_STATUS_DETECTIVE && targ.mmm_status == MMM_STATUS_CIVILIAN) || - (attacker.mmm_status == MMM_STATUS_CIVILIAN && targ.mmm_status == MMM_STATUS_CIVILIAN) + (attacker.mmm_status == MMM_STATUS_CIVILIAN && targ.mmm_status == MMM_STATUS_DETECTIVE) ) { Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_TEAMKILL_FRAG, targ.netname); -- 2.39.2