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

index 11e15941..8d5c33ce 100644 --- a/src/start.ts +++ b/src/start.ts
@@ -23,7 +23,7 @@ if (cluster.isMaster && process.env.production == "true") { }); } else { var port = Number(process.env.PORT); - if (isNaN(port)) port = 1000; + if (isNaN(port)) port = 3001; const server = new FosscordServer({ port }); server.start().catch(console.error);