fixed !missing to point to location table not item. (#2)

This commit is contained in:
KonoTyran 2021-04-28 06:46:54 -07:00 committed by GitHub
parent 95358bc523
commit 5087b78c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: