summary refs log tree commit diff
path: root/commands/motd.js
blob: 740cb0731375372d056ffc536d1ea1f7259d697a (plain)
1
2
3
4
5
6
7
export default {
    name: 'motd',
    aliases: [],
    command: function({user, server}) {
        user.socket.send("MOTD: " + server.format(server.config.motd));
    }
}