From 42b465da0d56fb18a89e12f2bcc0e2d6b5be6ebd Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Wed, 27 Feb 2013 13:58:56 -0500 Subject: [PATCH] Speaking of defaults... --- qcsrc/common/notifications.qh | 2 +- qcsrc/server/mutators/gamemode_ctf.qh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/notifications.qh b/qcsrc/common/notifications.qh index 9dd1c8566..39c92dfa7 100644 --- a/qcsrc/common/notifications.qh +++ b/qcsrc/common/notifications.qh @@ -574,7 +574,7 @@ var float autocvar_notification_lifetime_mapload = 10; void Notification_GetCvars(void); #else var float autocvar_notification_item_centerprinttime = 1.5; -var float autocvar_notification_allow_chatboxprint = 0; // 0 = no, 1 = yes, 2 = forced on for all MSG_INFO notifs // todo set back to 1 after testing +var float autocvar_notification_allow_chatboxprint = 1; // 0 = no, 1 = yes, 2 = forced on for all MSG_INFO notifs // todo set back to 1 after testing var float autocvar_notification_show_sprees_center = TRUE; var float autocvar_notification_show_sprees_center_specialonly = TRUE; var float autocvar_notification_frag_verbose = TRUE; diff --git a/qcsrc/server/mutators/gamemode_ctf.qh b/qcsrc/server/mutators/gamemode_ctf.qh index 4a9164a22..882b1064b 100644 --- a/qcsrc/server/mutators/gamemode_ctf.qh +++ b/qcsrc/server/mutators/gamemode_ctf.qh @@ -137,7 +137,7 @@ void havocbot_role_ctf_setrole(entity bot, float role); .float PICKUP_TEAM_VERBOSE; .float PICKUP_ENEMY_VERBOSE; #else -var float autocvar_notification_ctf_pickup_team_verbose = TRUE; -var float autocvar_notification_ctf_pickup_enemy_verbose = TRUE; +var float autocvar_notification_ctf_pickup_team_verbose = FALSE; +var float autocvar_notification_ctf_pickup_enemy_verbose = FALSE; #endif -var float autocvar_notification_ctf_capture_verbose = TRUE; +var float autocvar_notification_ctf_capture_verbose = FALSE; -- 2.39.2