- Blood: Don't parse BloodBathOnly levels in the INI loader.

* Fixes #442.
This commit is contained in:
Mitchell Richters 2021-06-24 18:21:06 +10:00
parent b6e76337e0
commit 6018213c71

View file

@ -166,6 +166,8 @@ void levelLoadDefaults(void)
sprintf(buffer, "Episode%d", i);
if (!BloodINI->SectionExists(buffer))
break;
if (BloodINI->GetKeyInt(buffer, "BloodBathOnly", 0))
continue;
auto cluster = MustFindCluster(i);
auto volume = MustFindVolume(i);
CutsceneDef &csB = cluster->outro;