diff options
Diffstat (limited to '')
-rw-r--r-- | src/Discord.ts | 12 | ||||
-rw-r--r-- | src/MinecraftHandler.ts | 10 |
2 files changed, 10 insertions, 12 deletions
diff --git a/src/Discord.ts b/src/Discord.ts index 93a99ff..7a4f5d6 100644 --- a/src/Discord.ts +++ b/src/Discord.ts @@ -114,13 +114,11 @@ class Discord { console.log('[INFO] User attempted a slash command without a role') } } else { - if (this.config.MINECRAFT_TELLRAW_DOESNT_EXIST) - { - command = `/say ${this.makeMinecraftTellraw(message)}` - } - else { - command = `/tellraw @a ${this.makeMinecraftTellraw(message)}` - } + if (this.config.MINECRAFT_TELLRAW_DOESNT_EXIST) { + command = `/say ${this.makeMinecraftTellraw(message)}` + } else { + command = `/tellraw @a ${this.makeMinecraftTellraw(message)}` + } } if (this.config.DEBUG) console.log(`[DEBUG] Sending command "${command}" to the server`) diff --git a/src/MinecraftHandler.ts b/src/MinecraftHandler.ts index d9d30d6..452784a 100644 --- a/src/MinecraftHandler.ts +++ b/src/MinecraftHandler.ts @@ -90,14 +90,14 @@ class MinecraftHandler { return { username: serverUsername, message: logLine } } else if (this.config.SHOW_SERVER_STATUS && (logLine.includes('Starting minecraft server'))) { if (this.config.DEBUG) { - console.log('[DEBUG]: Server has started') + console.log('[DEBUG]: Server has started') } - return { username: serverUsername, message: "Server is online" } + return { username: serverUsername, message: 'Server is online' } } else if (this.config.SHOW_SERVER_STATUS && (logLine.includes('Stopping the server'))) { if (this.config.DEBUG) { - console.log('[DEBUG]: Server has stopped') + console.log('[DEBUG]: Server has stopped') } - return { username: serverUsername, message: "Server is offline" } + return { username: serverUsername, message: 'Server is offline' } } else if (this.config.SHOW_PLAYER_ADVANCEMENT && logLine.includes('made the advancement')) { // handle advancements if (this.config.DEBUG){ @@ -132,7 +132,7 @@ class MinecraftHandler { // init the webserver this.app = express() - this.app.use((request, response, next) => { + this.app.use((request, _response, next) => { request.rawBody = '' request.setEncoding('utf8') |