mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 00:41:55 +00:00
- SW: fixed Bouncing Betty not spawning on Twin Dragon's $outpost.map
This commit is contained in:
parent
de81bb18c8
commit
f1bdee015d
2 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
map { 9 }
|
||||
{
|
||||
sw_spawnmines
|
||||
}
|
Loading…
Reference in a new issue