From fced8a00ebb646a0500a34846064c1497191e2a6 Mon Sep 17 00:00:00 2001 From: Astrologies Date: Tue, 21 Dec 2021 21:43:12 -0500 Subject: [PATCH] Game impl update --- globals/Dependencies/Games/Game.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/globals/Dependencies/Games/Game.php b/globals/Dependencies/Games/Game.php index b0aec78..b60c084 100644 --- a/globals/Dependencies/Games/Game.php +++ b/globals/Dependencies/Games/Game.php @@ -21,7 +21,7 @@ namespace Alphaland\Games { $s = $GLOBALS['pdo']->prepare("SELECT * FROM `open_servers` WHERE `port` = :p AND `status` < 2"); $s->bindParam(":p", $port, PDO::PARAM_STR); $s->execute(); - } while ($s->fetchColumn() != 0); + } while ($s->fetchColumn() != 0 || $port == 57236); return $port; }