Server side location ids such as cheat console no longer listed as missing.
This commit is contained in:
parent
f47a85d435
commit
d3915ba41f
|
@ -1087,7 +1087,9 @@ class ClientCommandProcessor(CommandProcessor):
|
||||||
"""List all missing location checks, from your local game state"""
|
"""List all missing location checks, from your local game state"""
|
||||||
count = 0
|
count = 0
|
||||||
checked_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 not in self.ctx.locations_checked:
|
||||||
if location in self.ctx.items_missing:
|
if location in self.ctx.items_missing:
|
||||||
self.output('Missing: ' + location)
|
self.output('Missing: ' + location)
|
||||||
|
|
Loading…
Reference in New Issue