From c8747a9ff6a559d6104f729aad607150867e62e0 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 24 Feb 2025 22:22:04 -0500 Subject: Send goal in raymarchitecture --- ArchipelagoManager.cs | 10 ++++++++++ GameplayPatches.cs | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/ArchipelagoManager.cs b/ArchipelagoManager.cs index b295f2a..5aebffa 100644 --- a/ArchipelagoManager.cs +++ b/ArchipelagoManager.cs @@ -71,6 +71,16 @@ namespace ManifoldGardenArchipelago _session.Locations.CompleteLocationChecks(_session.Locations.GetLocationIdFromName("Manifold Garden", locationName)); } + public void SendGoal() + { + _session.Socket.SendPacket(new StatusUpdatePacket() + { + Status = ArchipelagoClientState.ClientGoal, + }); + + Plugin.notificationManager.AddMessage("You completed your goal!"); + } + public void Update() { if (_session == null) diff --git a/GameplayPatches.cs b/GameplayPatches.cs index b2b8e54..03e3f13 100644 --- a/GameplayPatches.cs +++ b/GameplayPatches.cs @@ -259,6 +259,12 @@ namespace ManifoldGardenArchipelago { static void Postfix(LevelSystems newLevel) { + if (newLevel.levelName == "World_905_EndingCollapseCutscene_Optimized") + { + Plugin.archipelagoManager.SendGoal(); + return; + } + Plugin.slotSave.VisitedScenes.Add(newLevel.levelName); if (GameData.listenersByScene.TryGetValue(newLevel.levelName, out var listeners)) -- cgit 1.4.1