From: havoc Date: Thu, 19 Jul 2007 20:49:11 +0000 (+0000) Subject: fix problem with guardian not waking up in dissolution of eternity X-Git-Tag: xonotic-v0.1.0preview~2973 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=70bbf4d96e41d51da5f8ec585deafb25f3cd298c;p=xonotic%2Fdarkplaces.git fix problem with guardian not waking up in dissolution of eternity mission pack git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7492 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_main.c b/sv_main.c index 03a9615f..19f35f72 100644 --- a/sv_main.c +++ b/sv_main.c @@ -423,6 +423,11 @@ void SV_Init (void) // hipnotic mission pack has issues in their 'friendly monster' ai, which seem to attempt to attack themselves for some reason when findradius() returns non-solid entities. Cvar_SetValueQuick (&sv_gameplayfix_blowupfallenzombies, 0); } + if (gamemode == GAME_ROGUE) + { + // rogue mission pack has a guardian boss that does not wake up if findradius returns one of the entities around its spawn area + Cvar_SetValueQuick (&sv_gameplayfix_findradiusdistancetobox, 0); + } sv_mempool = Mem_AllocPool("server", 0, NULL); }