Skip to content

Commit a24e441

Browse files
committed
eep.
1 parent f8d8ddf commit a24e441

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/archipelago/APPlayState.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

source/states/FreeplayState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)