summary refs log tree commit diff stats
path: root/ArchipelagoManager.cs
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-02-23 14:00:17 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2025-02-23 14:00:17 -0500
commitc0ad40a3d43e83f35432d12e8b55d90c1865c264 (patch)
treeb1a91e9d697cb548ba048e8badbaccaf2800b065 /ArchipelagoManager.cs
parent22fd4098d048b6833f1993604f17144eadf3dea3 (diff)
downloadmanifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.tar.gz
manifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.tar.bz2
manifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.zip
A bunch of things
- Requirement decisions now have three states: yes, no, and maybe. Maybe means that the state of the game object in question hasn't been detected yet, so acting on the event that checked the requirement should be deferred. This was intended to fix the inverted pad checks in Pyramid, but it does not seem to have worked. Questioning reverting this part.
- Fixed the doors in W018.
- Smoke walls now work, sort of. If the cube is still on the pad, loading the game in that room will cause the wall to close (leaving and re-entering the room dismisses it thought). Putting the cube back on the pad will also close it again. Need to fix later.
- More patches that record gameplay state without interaction from the player and call listeners for those objects. e.g. buttons getting pressed by the game when loaded in, as opposed to when pressed by the player. Pads have been tweaked like this too.
- When opening a door, the mod now also invokes the animator. This fixes the problem where doors would appear to be closed when re-entering a room, even though you could still walk through them.
Diffstat (limited to 'ArchipelagoManager.cs')
-rw-r--r--ArchipelagoManager.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ArchipelagoManager.cs b/ArchipelagoManager.cs index 611ef30..998e2d9 100644 --- a/ArchipelagoManager.cs +++ b/ArchipelagoManager.cs
@@ -87,6 +87,7 @@ namespace ManifoldGardenArchipelago
87 87
88 if (GameData.listenersByItem.TryGetValue(itemName, out var listeners)) 88 if (GameData.listenersByItem.TryGetValue(itemName, out var listeners))
89 { 89 {
90 //Plugin.Logger.LogInfo($"Evaluating for {itemName}");
90 GameState.EvaluateGameStateListeners(listeners); 91 GameState.EvaluateGameStateListeners(listeners);
91 } 92 }
92 } 93 }