summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-28 20:08:57 +0200
committertpart <tpart120@proton.me>2024-09-28 20:08:57 +0200
commit17da1f050539079aacad3977d962d609d8adb95c (patch)
treec5bed547006c3376cca64a7e79cfd0065a8d8c47
parentfea2899db4065d035c9c3c6559741328e0084900 (diff)
downloadhurrycurry-17da1f050539079aacad3977d962d609d8adb95c.tar
hurrycurry-17da1f050539079aacad3977d962d609d8adb95c.tar.bz2
hurrycurry-17da1f050539079aacad3977d962d609d8adb95c.tar.zst
Unhide server errors (Fixes #171)
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 570ef32f..ce244674 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -294,7 +294,7 @@ func handle_packet(p):
"server_message":
var mstr := get_message_str(p.message)
if p.error:
- # popup_message.display_server_msg(tr("c.error.server").format([mstr]))
+ popup_message.display_server_msg(tr("c.error.server").format([mstr]))
push_error(tr("c.error.server").format([mstr]))
else:
popup_message.display_server_msg(mstr)