Game impl update

This commit is contained in:
Astrologies 2021-12-21 21:43:12 -05:00
parent d79bf18f37
commit fced8a00eb
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ namespace Alphaland\Games {
$s = $GLOBALS['pdo']->prepare("SELECT * FROM `open_servers` WHERE `port` = :p AND `status` < 2"); $s = $GLOBALS['pdo']->prepare("SELECT * FROM `open_servers` WHERE `port` = :p AND `status` < 2");
$s->bindParam(":p", $port, PDO::PARAM_STR); $s->bindParam(":p", $port, PDO::PARAM_STR);
$s->execute(); $s->execute();
} while ($s->fetchColumn() != 0); } while ($s->fetchColumn() != 0 || $port == 57236);
return $port; return $port;
} }