From: terencehill Date: Sat, 15 Mar 2014 23:27:51 +0000 (+0100) Subject: Fix verbose notifications not working properly X-Git-Tag: xonotic-v0.8.0~143^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=bc287d283da6f4c7c4b4110f6110721c9dcd5def;p=xonotic%2Fxonotic-data.pk3dir.git Fix verbose notifications not working properly --- 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; \