File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ namespace dusk {
510510 LocationTrackerInfo info {
511511 .locationName = location->GetName (),
512512 .logicStr = location->GetComputedRequirement ().to_string (),
513- .locationItem = itemId >= 0 ? world->GetItem (itemId)->GetName () : " Unknown" ,
513+ .locationItem = itemId >= 0 ? world->GetItem (itemId, true )->GetName () : " Unknown" ,
514514 .accessible = m_currentSearch._visitedLocations .contains (location)
515515 };
516516
Original file line number Diff line number Diff line change @@ -168,10 +168,11 @@ int getTempleKeysFound(int stage) {
168168 };
169169
170170 int count = dComIfGs_getKeyNum (stage);
171+ int saveId = getStageSaveId (stage);
171172
172173 // Add number of unlocked key doors for this dungeon to current key count
173174 for (auto flag : keyDoorFlags[stage]) {
174- if (dComIfGs_isSwitch (stage , flag)) {
175+ if (tracker_isStageSwitch (saveId , flag)) {
175176 count += 1 ;
176177 }
177178 }
You can’t perform that action at this time.
0 commit comments