]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't play the "new toys, new toys!" roflsound by default
authorMario <mario@smbclan.net>
Mon, 18 Jun 2018 09:45:09 +0000 (19:45 +1000)
committerMario <mario@smbclan.net>
Mon, 18 Jun 2018 09:45:09 +0000 (19:45 +1000)
mutators.cfg
qcsrc/common/mutators/mutator/new_toys/sv_new_toys.qc

index a4c8144fc209b51b36863d5735b19522ca633408..afa17824980e02ddc6be90760b998ec8bfd8d1c5 100644 (file)
@@ -294,7 +294,7 @@ set g_campcheck_distance 1800
 // ==========
 set g_new_toys 0 "Mutator 'New Toys': enable extra fun guns"
 set g_new_toys_autoreplace 2 "0: never replace, 1: always auto replace guns by available new toys, 2: randomly auto replace guns by available new toys"
-set g_new_toys_use_pickupsound 1 "play the 'new toys, new toys!' roflsound when picking up a new toys weapon"
+set g_new_toys_use_pickupsound 0 "play the 'new toys, new toys!' roflsound when picking up a new toys weapon"
 
 
 // =======
index 540edc69d9c6578c7ef4277a9f35b1a2f37cfb4b..37dac8f93123d0624d78e44f90e918e828c659d8 100644 (file)
@@ -108,7 +108,7 @@ REGISTER_MUTATOR(nt, expr_evaluate(cvar_string("g_new_toys")) && !MUTATOR_IS_ENA
 .string new_toys;
 
 float autocvar_g_new_toys_autoreplace;
-bool autocvar_g_new_toys_use_pickupsound = true;
+bool autocvar_g_new_toys_use_pickupsound = false;
 const float NT_AUTOREPLACE_NEVER = 0;
 const float NT_AUTOREPLACE_ALWAYS = 1;
 const float NT_AUTOREPLACE_RANDOM = 2;