summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
blob: 59f90466ce29120c41f7a2d9b8a8ce3d4a98c934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package net.ess3.settings.antibuild;

import lombok.Data;
import lombok.EqualsAndHashCode;
import net.ess3.storage.*;


@Data
@EqualsAndHashCode(callSuper = false)
public class AntiBuild implements StorageObject
{
	@Comment(
	{
		"Should people with build: false in permissions be allowed to build",
		"Set true to disable building for those people",
		"Setting to false means EssentialsAntiBuild will never prevent you from building"
	})
	private boolean build = true;
	@Comment(
	{
		"Should people with build: false in permissions be allowed to use items",
		"Set true to disable using for those people",
		"Setting to false means EssentialsAntiBuild will never prevent you from using"
	})
	private boolean use = true;
	@Comment(
	{
		"Should we tell people they are not allowed to build"
	})
	private boolean warnOnBuildDisallow = true;
	Alert alert = new Alert();
	BlackList blacklist = new BlackList();
}