From 4bfeb77a3a8fba6832b5e71cd5325c0608210721 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 10 Aug 2021 04:38:29 +0200 Subject: [PATCH] CommonClient: fix /missing found by lordlou --- CommonClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonClient.py b/CommonClient.py index 454ae7f7..30972a52 100644 --- a/CommonClient.py +++ b/CommonClient.py @@ -50,7 +50,7 @@ class ClientCommandProcessor(CommandProcessor): """List all missing location checks, from your local game state""" count = 0 checked_count = 0 - for location, location_id in AutoWorldRegister.world_types[self.ctx.game].item_name_to_id.items(): + for location, location_id in AutoWorldRegister.world_types[self.ctx.game].location_name_to_id.items(): if location_id < 0: continue if location_id not in self.ctx.locations_checked: