]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove old frag_verbose cvars
authorSamual Lenks <samual@xonotic.org>
Fri, 23 Aug 2013 18:06:50 +0000 (14:06 -0400)
committerSamual Lenks <samual@xonotic.org>
Fri, 23 Aug 2013 18:06:50 +0000 (14:06 -0400)
qcsrc/common/notifications.qc
qcsrc/common/notifications.qh

index 436f2fd0e8adeda11b26753ac6785fa790c5e1e6..58dcdc82e641c9042517f0c132cecb72c79c9ad1 100644 (file)
@@ -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"
index 1bf08eda161311244c23c9ed0901c8720b232bef..867a303ebd526d4f55993415c0fa05c5afdd3f68 100644 (file)
@@ -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