Skip to content

Commit f61f47e

Browse files
committed
ee
1 parent c9104f2 commit f61f47e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/archipelago/APGameState.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ class APGameState
10741074
info().casualSync = false;
10751075
try
10761076
{
1077-
FreeplayManager.getInstance().fpManager.reloadFreeplay(true);
1077+
FreeplayManager.instance.reloadFreeplay(true);
10781078
}
10791079
catch (e:Dynamic)
10801080
{

source/managers/APFreeplayManager.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,10 @@ class APFreeplayManager extends FreeplayManager {
343343
return array;
344344
}
345345

346-
var apSongData = archipelago.APInfo.apGame?.getSongAndModsFromArray(archipelago.APInfo.slotData.selectedSongs);
346+
var apSongData = archipelago.APInfo.apGame?.getSongsAndModsFromArray(archipelago.APInfo.slotData.selectedSongs);
347347

348348
WeekData.setDirectoryFromWeek(leWeek);
349-
var allowedSongs = [for (song in leWeek.songs) {
349+
var allowedSongs:Array<Dynamic> = [for (song in leWeek.songs) {
350350
for (songData in apSongData) {
351351
if (songData.song == song[0] && songData.mod == leWeek.folder) {
352352
song;

0 commit comments

Comments
 (0)