idac: fix incorrect game_cfg variable name

This commit is contained in:
2025-09-16 21:34:17 -04:00
parent 0c800759bb
commit 3df0f3fb06

View File

@ -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,
}