From 5087b78c28237514682628170589cec0e3acfb14 Mon Sep 17 00:00:00 2001 From: KonoTyran Date: Wed, 28 Apr 2021 06:46:54 -0700 Subject: [PATCH] fixed !missing to point to location table not item. (#2) --- MultiServer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiServer.py b/MultiServer.py index 4f913980..5a3da97f 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -810,7 +810,7 @@ class ClientMessageProcessor(CommonCommandProcessor): locations = get_missing_checks(self.ctx, self.client) if locations: - texts = [f'Missing: {get_item_name_from_id(location)}' for location in locations] + texts = [f'Missing: {get_location_name_from_address(location)}' for location in locations] texts.append(f"Found {len(locations)} missing location checks") self.ctx.notify_client_multiple(self.client, texts) else: