mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Prevent spawning crewmates/activity zones in custommode
Looks like there wasn't a custommode check for the spawning of crewmates based on which crewmates were rescued, but now there is. This has gone undiscovered for a long time, mostly because people don't use the rescued() internal command.
This commit is contained in:
parent
192b2f2dba
commit
85074c1402
1 changed files with 1 additions and 1 deletions
|
@ -1842,7 +1842,7 @@ void mapclass::loadlevel(int rx, int ry)
|
|||
}
|
||||
|
||||
//Special scripting: Create objects and triggers based on what crewmembers are rescued.
|
||||
if (!finalmode)
|
||||
if (!finalmode && !custommode)
|
||||
{
|
||||
//First up: the extra bits:
|
||||
//Vermilion's quest:
|
||||
|
|
Loading…
Reference in a new issue