From: Samual Lenks Date: Fri, 23 Aug 2013 18:06:50 +0000 (-0400) Subject: Remove old frag_verbose cvars X-Git-Tag: xonotic-v0.8.0~341^2~22 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9d9f334fa8f8a325bd9e74e0b2af01187be8d1df;p=xonotic%2Fxonotic-data.pk3dir.git Remove old frag_verbose cvars --- diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 436f2fd0e..58dcdc82e 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -1044,11 +1044,6 @@ void Dump_Notifications(float fh, float alsoprint) "If a notification fails upon initialization, cause a Host_Error to stop the program" ); - NOTIF_WRITE_HARDCODED( - "frag_verbose", "1", - "Show extra information when you frag someone (or when you are fragged" - ); - NOTIF_WRITE_HARDCODED( "item_centerprinttime", "1.5", "How long to show item information centerprint messages (like 'You got the Electro' or such)" @@ -1065,12 +1060,6 @@ void Dump_Notifications(float fh, float alsoprint) "Amount of time that notification entities last on the server during runtime (In seconds)" ); - NOTIF_WRITE_HARDCODED( - "server_allows_frag_verbose", "1", - "Server side cvar for showing extra information in frag messages... 0 = no extra frag information, " - "1 = frag information only in warmup, 2 = frag information allowed all the time" - ); - NOTIF_WRITE_HARDCODED( "server_allows_location", "1", "Server side cvar for allowing death messages to show location information too" diff --git a/qcsrc/common/notifications.qh b/qcsrc/common/notifications.qh index 1bf08eda1..867a303eb 100644 --- a/qcsrc/common/notifications.qh +++ b/qcsrc/common/notifications.qh @@ -753,7 +753,6 @@ var float autocvar_notification_debug = FALSE; #ifdef SVQC .float FRAG_VERBOSE; void Notification_GetCvars(void); -var float autocvar_notification_server_allows_frag_verbose = 1; // 0 = no, 1 = warmup only, 2 = all the time var float autocvar_notification_server_allows_location = 1; // 0 = no, 1 = yes #else var float autocvar_notification_item_centerprinttime = 1.5; @@ -764,7 +763,6 @@ var float autocvar_notification_allow_chatboxprint = 0; var float autocvar_notification_show_sprees_center = TRUE; var float autocvar_notification_show_sprees_center_specialonly = TRUE; -var float autocvar_notification_frag_verbose = TRUE; #endif