Skip to content

Commit 5087b78

Browse files
authored
fixed !missing to point to location table not item. (#2)
1 parent 95358bc commit 5087b78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MultiServer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ def _cmd_missing(self) -> bool:
810810
locations = get_missing_checks(self.ctx, self.client)
811811

812812
if locations:
813-
texts = [f'Missing: {get_item_name_from_id(location)}' for location in locations]
813+
texts = [f'Missing: {get_location_name_from_address(location)}' for location in locations]
814814
texts.append(f"Found {len(locations)} missing location checks")
815815
self.ctx.notify_client_multiple(self.client, texts)
816816
else:

0 commit comments

Comments
 (0)