summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-16 15:04:55 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-16 15:04:55 +0100
commitc5bb9a6006c97d5200b65af419889cb682068baf (patch)
treef4dd2ecf9ad0d3bd8e4cc7b1681f2cef64fdba3e /src
parent:sparkles: load .env file (diff)
downloadserver-c5bb9a6006c97d5200b65af419889cb682068baf.tar.xz
:bug: fix startup error
Diffstat (limited to 'src')
-rw-r--r--src/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts

index f2e5565f..08804687 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -1,6 +1,7 @@ process.on("uncaughtException", console.error); process.on("unhandledRejection", console.error); +import "missing-native-js-functions"; import { config } from "dotenv"; config(); import { DiscordServer } from "./Server";