mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Server side location ids such as cheat console no longer listed as missing.
This commit is contained in:
@@ -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)
|
||||||
|
Reference in New Issue
Block a user