diff options
author | WlodekM <[email protected]> | 2024-08-09 20:46:04 +0300 |
---|---|---|
committer | WlodekM <[email protected]> | 2024-08-09 20:46:04 +0300 |
commit | 80d45efdf7fe6204de5378b2e5536d241d9996df (patch) | |
tree | d602a536ecd4ed6e6f4b86bf8c68499c873297e3 /commands/motd.js | |
parent | 87cb115ac9d37199c9da8487a3810c98544ac240 (diff) |
v1.3.0 (also use prettier (bad idea (why doesnt it have an undo command) ) )
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 + }, +}; |