summary refs log tree commit diff
path: root/commands/motd.ts
blob: 43293c9a90a7e326064abe1e56cecabf150d141d (plain)
1
2
3
4
5
6
7
8
9
import { CommandFnArgs } from "../commands.ts"

export default {
    name: "motd",
    aliases: [],
    command: function ({ user, server }: CommandFnArgs) {
        user.socket.send("MOTD: " + server.format(server.config.server.motd));
    },
};