summary refs log tree commit diff
path: root/commands/motd.js
blob: a4e7fde29813136f43b54bec4a883ca70a1ddd56 (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));
    },
};