diff options
Diffstat (limited to 'src/commands/moulberry-bush/serverStatus.ts')
-rw-r--r-- | src/commands/moulberry-bush/serverStatus.ts | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/commands/moulberry-bush/serverStatus.ts b/src/commands/moulberry-bush/serverStatus.ts index c0c0518..a4d5e45 100644 --- a/src/commands/moulberry-bush/serverStatus.ts +++ b/src/commands/moulberry-bush/serverStatus.ts @@ -38,7 +38,7 @@ export default class ServerStatusCommand extends BushCommand { await message.util.edit({ embeds: [ msgEmbed - .addFields([{ name: 'Status', value: 'The server is online, all features related to prices will likely work.' }]) + .addFields({ name: 'Status', value: 'The server is online, all features related to prices will likely work.' }) .setColor(colors.success) ] }); @@ -46,13 +46,11 @@ export default class ServerStatusCommand extends BushCommand { await message.util.edit({ embeds: [ msgEmbed - .addFields([ - { - name: 'Status', - value: - "It appears Moulberry's server is offline, this means that everything related to prices will likely not work." - } - ]) + .addFields({ + name: 'Status', + value: + "It appears Moulberry's server is offline, this means that everything related to prices will likely not work." + }) .setColor(colors.error) ] }); |