diff options
| author | tpart <tpart120@proton.me> | 2025-10-17 21:58:19 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-17 21:58:29 +0200 |
| commit | 759657e7bee87f261b1475f95852ee3daf6c6eb7 (patch) | |
| tree | 9a0fc3bcaa00b5abb21840b0d8ed0ada448ce5ff /client | |
| parent | 9958d376bb65dbe86d169d57c9d909a3f7c0b6f5 (diff) | |
| download | hurrycurry-759657e7bee87f261b1475f95852ee3daf6c6eb7.tar hurrycurry-759657e7bee87f261b1475f95852ee3daf6c6eb7.tar.bz2 hurrycurry-759657e7bee87f261b1475f95852ee3daf6c6eb7.tar.zst | |
Trim hurrycurry.* from domain in server list
Diffstat (limited to 'client')
| -rw-r--r-- | client/gui/menus/main/server_list_item.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gui/menus/main/server_list_item.gd b/client/gui/menus/main/server_list_item.gd index f96442c0..1f829e13 100644 --- a/client/gui/menus/main/server_list_item.gd +++ b/client/gui/menus/main/server_list_item.gd @@ -39,7 +39,7 @@ func setup(name_: String, online_players: int, version: Array, addresses: Array[ if addresses.size() > 1 or not addresses[0].begins_with("wss://"): address.visible = false else: - address.text = addresses[0].trim_suffix(":443").trim_prefix("wss://") + address.text = addresses[0].trim_suffix(":443").trim_prefix("wss://").trim_prefix("hurrycurry.") # This node is in group not no_click_sound, so sounds won't be automatically connected # by menu system. Reason: These nodes are deleted and re-created every few seconds |