From 91f583be92f8eb9d003fb289ac7ad069823cd110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Wed, 9 Oct 2024 17:44:28 +0200 Subject: [PATCH] produce links to shared json replays instead of private --- src/hanabi/live/compress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hanabi/live/compress.py b/src/hanabi/live/compress.py index 89aa29c..7652d01 100644 --- a/src/hanabi/live/compress.py +++ b/src/hanabi/live/compress.py @@ -221,4 +221,4 @@ def decompress_game_state(game_str: str) -> hanab_live.HanabLiveGameState: def link(game_state: hanab_game.GameState) -> str: compressed = compress_game_state(game_state) - return "https://hanab.live/shared-replay-json/{}".format(compressed) + return "https://hanab.live/replay-json/{}".format(compressed)