diff --git a/CommonClient.py b/CommonClient.py index 43abe8ab..17f013d6 100644 --- a/CommonClient.py +++ b/CommonClient.py @@ -56,7 +56,7 @@ class ClientCommandProcessor(CommandProcessor): """List all received items""" logger.info(f'{len(self.ctx.items_received)} received items:') for index, item in enumerate(self.ctx.items_received, 1): - self.output(f"{self.ctx.item_names(item.item)} from {self.ctx.player_names[item.player]}") + self.output(f"{self.ctx.item_names[item.item]} from {self.ctx.player_names[item.player]}") return True def _cmd_missing(self) -> bool: