summary refs log tree commit diff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts

index 3a05cdfa..6a0fabc4 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -7,7 +7,7 @@ config(); import { DiscordServer } from "./Server"; var port = Number(process.env.PORT); -if (isNaN(port)) port = 3000; +if (isNaN(port)) port = 1000; const server = new DiscordServer({ port }); server.start().catch(console.error);