diff --git a/R2API/DirectorAPIhelpers.cs b/R2API/DirectorAPIhelpers.cs index 838c7901..caee18a5 100644 --- a/R2API/DirectorAPIhelpers.cs +++ b/R2API/DirectorAPIhelpers.cs @@ -259,7 +259,7 @@ public static void RemoveExistingMonsterFromStage(string? monsterName, Stage sta } MonsterActions += (monsters, currentStage) => { if (currentStage.stage == stage) { - if ((stage != Stage.Custom) ^ (currentStage.CustomStageName == customStageName)) { + if (currentStage.CheckStage(stage, customStageName)) { monsters.RemoveAll((card) => (card.Card.spawnCard.name.ToLower() == monsterName.ToLower())); } }