From 9b4a87a467029af3ae9a29d4cd7806e4e23140ac Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 14 May 2020 07:12:20 +0200 Subject: [PATCH] use self.output in command processor --- MultiServer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index 3f949ddb..57e79d89 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -702,10 +702,10 @@ class ClientMessageProcessor(CommandProcessor): notify_hints(self.ctx, self.client.team, list(new_hints)) save(self.ctx) else: - notify_client(self.client, f"You can't afford the hint. " - f"You have {points_available} points and need at least " - f"{self.ctx.hint_cost}, " - f"more if multiple items are still to be found.") + self.output(f"You can't afford the hint. " + f"You have {points_available} points and need at least " + f"{self.ctx.hint_cost}, " + f"more if multiple items are still to be found.") return True else: self.output("Nothing found. Item/Location may not exist.")