summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/motd/Motd.cmd
blob: 52107ef5d9030cf063d52c7060918a016f7c4cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
command motd {
    get {
        help Returns the motd;
        run getmotd;
    	perm utils.motd.get;
    }
    set [string:motd...] {
        help Sets the motd. Use --reset to reset to default;
        run setmotd motd;
    	perm utils.motd.set;
    }
    [empty] {
        help Returns the motd;
        run getmotd;
    	perm utils.motd.get;
    }
}