]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Show kill sprees on newlines instead of the normal message line
authorSamual Lenks <samual@xonotic.org>
Sat, 2 Mar 2013 18:54:31 +0000 (13:54 -0500)
committerSamual Lenks <samual@xonotic.org>
Sat, 2 Mar 2013 18:54:31 +0000 (13:54 -0500)
qcsrc/common/notifications.qc
qcsrc/common/notifications.qh

index d49e56913db83f1c90bab2926dcaf474ea87349e..9429ee50daf31b3ea8e38ec5a4043d28008e7f47 100644 (file)
@@ -681,7 +681,7 @@ void Dump_Notifications(float fh, float alsoprint)
        NOTIF_WRITE_HARDCODED("show_sprees_center",                             "1",    "Show spree information in MSG_CENTER messages... 0 = off, 1 = target (but only for first victim) and attacker");
        NOTIF_WRITE_HARDCODED("show_sprees_center_specialonly",         "1",    "Don't show spree information in MSG_CENTER messages if it isn't an achievement");
        NOTIF_WRITE_HARDCODED("show_sprees_info",                                       "3",    "Show spree information in MSG_INFO messages... 0 = off, 1 = target only, 2 = attacker only, 3 = target and attacker");
-       NOTIF_WRITE_HARDCODED("show_sprees_info_newline",                       "0",    "Show attacker spree information for MSG_INFO messages on a separate line than the death notification itself");
+       NOTIF_WRITE_HARDCODED("show_sprees_info_newline",                       "1",    "Show attacker spree information for MSG_INFO messages on a separate line than the death notification itself");
        NOTIF_WRITE_HARDCODED("show_sprees_info_specialonly",           "1",    "Don't show attacker spree information in MSG_INFO messages if it isn't an achievement");
        NOTIF_WRITE_HARDCODED("item_centerprinttime",                           "1.5",  "How long to show item information centerprint messages (like 'You got the Electro' or such)");
        NOTIF_WRITE_HARDCODED("errors_are_fatal",                                       "1",    "If a notification fails upon initialization, cause a Host_Error to stop the program");
index bb1a8509394cea5e5b651b2907d1deb1e73f2e02..203c30f3d5fc834dd9443159c82d34c17c083d0d 100644 (file)
@@ -614,7 +614,7 @@ var float autocvar_notification_show_location = FALSE;
 var string autocvar_notification_show_location_string = ""; //_(" at the %s");
 var float autocvar_notification_show_sprees = TRUE;
 var float autocvar_notification_show_sprees_info = 3; // 0 = off, 1 = target only, 2 = attacker only, 3 = target and attacker
-var float autocvar_notification_show_sprees_info_newline = FALSE;
+var float autocvar_notification_show_sprees_info_newline = TRUE;
 var float autocvar_notification_show_sprees_info_specialonly = TRUE;
 var float autocvar_notification_errors_are_fatal = TRUE;
 var float autocvar_notification_lifetime_runtime = 0.5;