From 82a2e68a65d39cf2a6ce4e56189eac25f5eb03a5 Mon Sep 17 00:00:00 2001 From: UncleJim Date: Thu, 26 Oct 2023 09:58:07 +0000 Subject: [PATCH] Always return matching state to keep players out of looping back to matching screen --- titles/idac/matching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titles/idac/matching.py b/titles/idac/matching.py index fb9f56d..396eec8 100644 --- a/titles/idac/matching.py +++ b/titles/idac/matching.py @@ -55,7 +55,7 @@ class IDACMatching(resource.Resource): "host": self.game_config.server.matching_host, "port": self.game_config.server.matching_p2p, "room_name": "INDTA", - "state": self.get_matching_state(), + "state": 1, } self.logger.debug(f"Response {resp}") -- 2.39.2