File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2297,9 +2297,9 @@ class APPlayState extends PlayState {
22972297 updateScore ();
22982298 }
22992299
2300- if (note is archipealgo .APNote )
2301- checkedNotes .push (note );
2302-
2300+ if (note is archipelago .APNote )
2301+ checkedNotes .push (cast ( note , archipelago. APNote ) );
2302+
23032303 super .goodNoteHit (note , field );
23042304 }
23052305
Original file line number Diff line number Diff line change @@ -787,7 +787,7 @@ class FreeplayState extends MusicBeatState
787787 }
788788
789789 trace (" Final locationId after trimming: " + locationId .trim ());
790- var locationIdInts = APEntryState .apGame .locationData (locationId .trim ()).concat (APEntryState .apGame .noteData (locationId .trim ()));
790+ var locationIdInts = APEntryState .apGame .locationData (locationId .trim ()).concat (APEntryState .apGame .noteData (songName . trim (), modName .trim ()));
791791 trace (" Location IDs retrieved: " + locationIdInts );
792792
793793 if (locationIdInts == null || locationIdInts .length == 0 || locationIdInts .indexOf (0 ) != - 1 ) {
You can’t perform that action at this time.
0 commit comments