From 3df0f3fb0698dc0d256e3d78b742372fe86c00e7 Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Tue, 16 Sep 2025 21:34:17 -0400 Subject: [PATCH] idac: fix incorrect game_cfg variable name --- titles/idac/index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/titles/idac/index.py b/titles/idac/index.py index 4e24491..b632a9d 100644 --- a/titles/idac/index.py +++ b/titles/idac/index.py @@ -162,8 +162,8 @@ class IDACServlet(BaseServlet): resp = { "status_code": "0", # Only IPv4 is supported - "host": self.game_config.server.matching_host, - "port": self.game_config.server.matching_p2p, + "host": self.game_cfg.server.matching_host, + "port": self.game_cfg.server.matching_p2p, "room_name": "INDTA", "state": 1, }