From: Mario Date: Mon, 1 Jun 2020 13:38:41 +0000 (+1000) Subject: Add default values to the new respawn ghost cvars in code for old servers that are... X-Git-Tag: xonotic-v0.8.5~969 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=2d53a071fd75edac5fd3df7aa289160d417d41b4;p=xonotic%2Fxonotic-data.pk3dir.git Add default values to the new respawn ghost cvars in code for old servers that are updating to latest code --- diff --git a/qcsrc/server/autocvars.qh b/qcsrc/server/autocvars.qh index 34a3efedd..99077dcfe 100644 --- a/qcsrc/server/autocvars.qh +++ b/qcsrc/server/autocvars.qh @@ -201,9 +201,9 @@ int autocvar_g_respawn_delay_large_count; float autocvar_g_respawn_delay_max; bool autocvar_g_respawn_delay_forced; bool autocvar_g_respawn_ghosts; -float autocvar_g_respawn_ghosts_alpha; -float autocvar_g_respawn_ghosts_fadetime; -float autocvar_g_respawn_ghosts_time; +float autocvar_g_respawn_ghosts_alpha = 1; +float autocvar_g_respawn_ghosts_fadetime = 1.5; +float autocvar_g_respawn_ghosts_time = 4.5; float autocvar_g_respawn_ghosts_speed; int autocvar_g_respawn_waves; string autocvar_g_shootfromfixedorigin;