summaryrefslogtreecommitdiff
path: root/client/game.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-20 16:00:50 +0200
committertpart <tpart120@proton.me>2024-09-20 16:00:57 +0200
commit6b93fb43e858e1b979d8539b9b9cde3edfbfa195 (patch)
tree0118dbc48d4cd805d4e9077ac396e6577a2b755f /client/game.gd
parent43fb407dcdc6e93562dde047413b32d03b3da1ad (diff)
downloadhurrycurry-6b93fb43e858e1b979d8539b9b9cde3edfbfa195.tar
hurrycurry-6b93fb43e858e1b979d8539b9b9cde3edfbfa195.tar.bz2
hurrycurry-6b93fb43e858e1b979d8539b9b9cde3edfbfa195.tar.zst
Don't display server errors
Diffstat (limited to 'client/game.gd')
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 8cd648a6..875e5fa7 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -263,7 +263,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)