diff options
Diffstat (limited to 'commands/motd.js')
-rw-r--r-- | commands/motd.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/motd.js b/commands/motd.js index 740cb07..a4e7fde 100644 --- a/commands/motd.js +++ b/commands/motd.js @@ -1,7 +1,7 @@ export default { - name: 'motd', + name: "motd", aliases: [], - command: function({user, server}) { + command: function ({ user, server }) { user.socket.send("MOTD: " + server.format(server.config.motd)); - } -} \ No newline at end of file + }, +}; |