From: Mario Date: Thu, 28 Jul 2016 15:25:30 +0000 (+1000) Subject: Disable sv_autopause by default (introduces some bugs, annoyingly pauses music when... X-Git-Tag: xonotic-v0.8.2~700^2~9 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ca64c53ebb7a9853968ce854dfd1eaf5fb3b23b6;p=xonotic%2Fxonotic-data.pk3dir.git Disable sv_autopause by default (introduces some bugs, annoyingly pauses music when paused) --- diff --git a/qcsrc/server/sv_main.qc b/qcsrc/server/sv_main.qc index 105e2a943..7469d2230 100644 --- a/qcsrc/server/sv_main.qc +++ b/qcsrc/server/sv_main.qc @@ -153,7 +153,7 @@ Called before each frame by the server float game_delay; float game_delay_last; -bool autocvar_sv_autopause = true; +bool autocvar_sv_autopause = false; float RedirectionThink(); void PM_Main(Client this); void StartFrame()