summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
blob: b0eb4863658e8623d62b86ee4654b41d721ee909 (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
34
35
36
37
38
39
package net.ess3.settings.antibuild;

import java.util.HashSet;
import java.util.Set;
import lombok.Data;
import lombok.EqualsAndHashCode;
import net.ess3.storage.*;
import org.bukkit.Material;


@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();
	
	
}