🎨 change default port to 2000

This commit is contained in:
Flam3rboy
2021-04-19 22:00:23 +02:00
parent 85ac6b4c63
commit 0e77160466
+1 -1
View File
@@ -7,7 +7,7 @@ import { Connection } from "./events/Connection";
import Config from "./util/Config";
var port = Number(process.env.PORT);
if (isNaN(port)) port = 8080;
if (isNaN(port)) port = 2000;
export class Server {
public ws: WebSocketServer;