diff options
author | destruc7i0n <dscdsouza@outlook.com> | 2020-10-31 00:10:37 -0400 |
---|---|---|
committer | destruc7i0n <dscdsouza@outlook.com> | 2020-10-31 00:10:37 -0400 |
commit | dc70468459c0b510b5bf8b8c045e9c374b84cad1 (patch) | |
tree | 4b4daa6e1b91fb2e5962ca3b6c9dbff865f2fe16 /src/Discord.ts | |
parent | Merge pull request #64 from Elveskevtar/master (diff) | |
download | shulker-dc70468459c0b510b5bf8b8c045e9c374b84cad1.tar.gz shulker-dc70468459c0b510b5bf8b8c045e9c374b84cad1.zip |
update packages
Diffstat (limited to '')
-rw-r--r-- | src/Discord.ts | 12 |
1 files changed, 5 insertions, 7 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`) |