Server side location ids such as cheat console no longer listed as missing.

This commit is contained in:
CaitSith2 2021-01-21 16:55:40 -08:00
parent f47a85d435
commit d3915ba41f
1 changed files with 3 additions and 1 deletions

View File

@ -1087,7 +1087,9 @@ class ClientCommandProcessor(CommandProcessor):
"""List all missing location checks, from your local game state"""
count = 0
checked_count = 0
for location in Regions.lookup_name_to_id.keys():
for location, location_id in Regions.lookup_name_to_id.items():
if location_id < 0:
continue
if location not in self.ctx.locations_checked:
if location in self.ctx.items_missing:
self.output('Missing: ' + location)