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