From b4b40869c1cc8338f914ca8f0c9e118f05bbf5cb Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Mon, 8 Jan 2024 20:21:27 -0500 Subject: [PATCH] chuni: add roomId to handle_get_matching_state_api_request, update changelog --- changelog.md | 1 + titles/chuni/new.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 914dd5c..c12bbce 100644 --- a/changelog.md +++ b/changelog.md @@ -23,6 +23,7 @@ Documenting updates to ARTEMiS, to be updated every time the master branch is pu + Add `matching` section to `chuni.yaml` + Change `udpHolePunchUri` and `reflectorUri` to be STUN and TURN servers + Imrpove `GetGameSetting` request handling for different versions ++ Fix issue where songs would not always return all scores [#92](https://gitea.tendokyu.moe/Hay1tsme/artemis/pulls/92) (Thanks Kumubou!) ### maimai DX + Fix user charges failing to save diff --git a/titles/chuni/new.py b/titles/chuni/new.py index 15bef13..208f3b1 100644 --- a/titles/chuni/new.py +++ b/titles/chuni/new.py @@ -659,4 +659,7 @@ class ChuniNew(ChuniBase): "matchingMemberInfoList": [current_member] + diff_members, } - return {"matchingWaitState": matching_wait} + return { + "roomId": data["roomId"], + "matchingWaitState": matching_wait + }