remove logs

This commit is contained in:
AlecM33
2023-01-30 12:46:26 -05:00
parent 79309f5062
commit 6125676410
2 changed files with 2 additions and 5 deletions

View File

@@ -83,7 +83,6 @@ router.patch('/:code/players', async function (req, res) {
gameManager.joinGame(game, req.body.playerName, inUseCookie, req.body.joinAsSpectator).then((data) => {
res.status(200).send({ cookie: data, environment: gameManager.environment });
}).catch((data) => {
console.log(data);
res.status(data.status).send(data.reason);
});
} else {