summary refs log tree commit diff
path: root/commands/motd.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/motd.js')
-rw-r--r--commands/motd.js8
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
+    },
+};