From 6ef358e1a1cddd853ff0245bb27669cdcc049dc6 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 22 May 2024 23:51:25 -0400 Subject: Prevent Mitra cliff cutscene --- AnodyneArchipelago/Plugin.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'AnodyneArchipelago') diff --git a/AnodyneArchipelago/Plugin.cs b/AnodyneArchipelago/Plugin.cs index d5dba43..24345fc 100644 --- a/AnodyneArchipelago/Plugin.cs +++ b/AnodyneArchipelago/Plugin.cs @@ -244,6 +244,12 @@ namespace AnodyneArchipelago GlobalState.SpawnEntity((Entity)new DoorToggle(__result.Position, __result.width, __result.height)); } } + else if (__instance.Type.FullName == "AnodyneSharp.Entities.Interactive.Npc.MitraCliff") + { + // We want to get rid of this scene entirely. + __instance.Alive = false; + __result.exists = false; + } } } -- cgit 1.4.1