From bc287d283da6f4c7c4b4110f6110721c9dcd5def Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 16 Mar 2014 00:27:51 +0100 Subject: [PATCH] Fix verbose notifications not working properly --- qcsrc/common/notifications.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 4fd6e1f25..8f21db76c 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -2027,7 +2027,7 @@ void Send_Notification( #define RECURSE_FROM_CHOICE(ent,action) \ if(notif.nent_challow_var && (warmup_stage || (notif.nent_challow_var == 2))) \ { \ - switch(ent.msg_choice_choices[net_name]) \ + switch(ent.msg_choice_choices[net_name - 1]) \ { \ case 1: found_choice = notif.nent_optiona; break; \ case 2: found_choice = notif.nent_optionb; break; \ -- 2.39.2