- SW: fixed Bouncing Betty not spawning on Twin Dragon's $outpost.map

This commit is contained in:
Christoph Oelckers 2022-10-01 15:57:40 +02:00
parent de81bb18c8
commit f1bdee015d
2 changed files with 6 additions and 1 deletions

View file

@ -970,7 +970,7 @@ bool ActorTestSpawn(DSWActor* actor)
actor->spr.picnum == SAILORGIRL_R0) && (g_gameType & GAMEFLAG_ADDON)) return true;
// spawn Bouncing Betty (mine) in TD map 09 Warehouse
if (actor->spr.picnum == 817 && (currentLevel->flags & LEVEL_SW_SPAWNMINES))
if (actor->spr.picnum == 817 && (currentLevel->gameflags & LEVEL_SW_SPAWNMINES))
return true;
return false;

View file

@ -0,0 +1,5 @@
map { 9 }
{
sw_spawnmines
}