From 2a93775d7707fec6d19a345e87598f321d63a5b1 Mon Sep 17 00:00:00 2001 From: Ayush Saini <36878972+imayushsaini@users.noreply.github.com> Date: Sun, 18 Feb 2024 14:55:33 +0530 Subject: [PATCH] fixed port configuration --- bombsquad_server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bombsquad_server b/bombsquad_server index 212812e..2ab7615 100644 --- a/bombsquad_server +++ b/bombsquad_server @@ -704,7 +704,7 @@ class ServerManagerApp: # Some of our config values translate directly into the # ballisticacore config file; the rest we pass at runtime. - port = int(os.environ.get('PORT', 43210)) + port = int(os.environ.get('PORT', self._config.port)) bincfg['Port'] = port bincfg['Auto Balance Teams'] = self._config.auto_balance_teams bincfg['Show Tutorial'] = self._config.show_tutorial