We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08f2b6 commit 2dc972bCopy full SHA for 2dc972b
source/states/FreeplayState.hx
@@ -143,6 +143,14 @@ class FreeplayState extends MusicBeatState
143
Cursor.cursorMode = Default;
144
instance = this; // For Archipelago
145
146
+ // Check if the Victory Song is cleared.
147
+
148
+ {
149
+ var victorySong = APEntryState.apGame.getSongAndMod(APEntryState.victorySong);
150
+ if (APEntryState.apGame.checkGoal(victorySong.song, victorySong.mod))
151
+ trace("Victory song is cleared!");
152
+ }
153
154
if (APEntryState.apGame != null && APEntryState.apGame.info() != null) {
155
var checker = archipelago.APGameState.instance?.info();
156
checker.poll();
0 commit comments