From: Mario Date: Mon, 18 Jun 2018 09:45:09 +0000 (+1000) Subject: Don't play the "new toys, new toys!" roflsound by default X-Git-Tag: xonotic-v0.8.5~2013 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a37e4d4ed8bdb7b0d2b0ffb601e20d3b6d9885bd;p=xonotic%2Fxonotic-data.pk3dir.git Don't play the "new toys, new toys!" roflsound by default --- diff --git a/mutators.cfg b/mutators.cfg index a4c8144fc..afa178249 100644 --- a/mutators.cfg +++ b/mutators.cfg @@ -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" // ======= diff --git a/qcsrc/common/mutators/mutator/new_toys/sv_new_toys.qc b/qcsrc/common/mutators/mutator/new_toys/sv_new_toys.qc index 540edc69d..37dac8f93 100644 --- a/qcsrc/common/mutators/mutator/new_toys/sv_new_toys.qc +++ b/qcsrc/common/mutators/mutator/new_toys/sv_new_toys.qc @@ -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;