summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/ignore/Ignore.cmd
blob: d8360d0aa8ecc3ca0a6bed87e97141dd093d6882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
command ignore {
    perm utils.ignore;
	[string:player] {
		run ignore player;
		type player;
		help Ignores or Unignores a player.;
	}
	[empty] {
		run list;
		type player;
		help Lists everyone you ignore.;
	}
}
command unignore {
    perm utils.ignore;
	[string:player] {
		run unignore player;
		type player;
		help Unignore a player.;
	}
}