mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-16 05:55:37 -04:00
dont throw on failed to obtain item name, fix getTempleKeysFound not checking flag correctly
This commit is contained in:
@@ -510,7 +510,7 @@ namespace dusk {
|
||||
LocationTrackerInfo info {
|
||||
.locationName = location->GetName(),
|
||||
.logicStr = location->GetComputedRequirement().to_string(),
|
||||
.locationItem = itemId >= 0 ? world->GetItem(itemId)->GetName() : "Unknown",
|
||||
.locationItem = itemId >= 0 ? world->GetItem(itemId, true)->GetName() : "Unknown",
|
||||
.accessible = m_currentSearch._visitedLocations.contains(location)
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user