Skip to content

Commit 7a19d70

Browse files
committed
Merge branch 'Archipelago' of https://github.com/Z11Coding/Mixtape-Engine-Rework into Archipelago
2 parents 840c0e8 + 6edf181 commit 7a19d70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/substates/RankingSubstate.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class RankingSubstate extends MusicBeatSubstate
155155
locationId += " (" + archipelago.APPlayState.currentMod + ")";
156156
}
157157
trace(locationId.trim());
158-
var locationIdInts = APInfo.apGame.locationData(locationId.trim());
158+
var locationIdInts = APEntryState.apGame.locationData(locationId.trim());
159159
trace('Location IDs: ' + locationIdInts);
160160

161161
if (locationIdInts == null || locationIdInts.length == 0 || locationIdInts.indexOf(0) != -1)
@@ -168,7 +168,7 @@ class RankingSubstate extends MusicBeatSubstate
168168
locationId = archipelago.APPlayState.currentMod.trim() != ""
169169
? song[0] + " (" + archipelago.APPlayState.currentMod + ")"
170170
: song[0];
171-
locationIdInts = APInfo.apGame.locationData(locationId.trim());
171+
locationIdInts = APEntryState.apGame.locationData(locationId.trim());
172172
break;
173173
}
174174
}
@@ -196,7 +196,7 @@ class RankingSubstate extends MusicBeatSubstate
196196
locationId = archipelago.APPlayState.currentMod.trim() != ""
197197
? song[0] + " (" + archipelago.APPlayState.currentMod + ")"
198198
: song[0];
199-
locationIdInts = APInfo.apGame.locationData(locationId.trim());
199+
locationIdInts = APEntryState.apGame.locationData(locationId.trim());
200200
break;
201201
}
202202
}

0 commit comments

Comments
 (0)