From 6b57275859296141f1074e2ad7be92e69b15ecd9 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 5 Dec 2022 02:06:13 +0100 Subject: [PATCH] Server: attempt to make nothing found message clearer (#1289) --- MultiServer.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/MultiServer.py b/MultiServer.py index f627ad55d8..ad134901b9 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -1462,7 +1462,12 @@ class ClientMessageProcessor(CommonCommandProcessor): else: if points_available >= cost: - self.output("Nothing found. Item/Location may not exist.") + if for_location: + self.output(f"Nothing found for recognized location name \"{hint_name}\". " + f"Location appears to not exist in this multiworld.") + else: + self.output(f"Nothing found for recognized item name \"{hint_name}\". " + f"Item appears to not exist in this multiworld.") else: self.output(f"You can't afford the hint. " f"You have {points_available} points and need at least "