summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-19 22:00:23 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-19 22:00:23 +0200
commit0e771604661aa898451c700266cb7fce69086a93 (patch)
tree1b66afda0a77ca511b6ade2bfced27f1555b16b9
parent:heavy_minus_sign: remove lambert-db (diff)
downloadserver-0e771604661aa898451c700266cb7fce69086a93.tar.xz
:art: change default port to 2000
-rw-r--r--src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.ts b/src/Server.ts

index feab8051..b89a8340 100644 --- a/src/Server.ts +++ b/src/Server.ts
@@ -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;