summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/settings/antibuild/AntiBuild.java')
-rw-r--r--Essentials/src/net/ess3/settings/antibuild/AntiBuild.java21
1 files changed, 7 insertions, 14 deletions
diff --git a/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java b/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
index 3bbf32f42..9073fa8d2 100644
--- a/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
+++ b/Essentials/src/net/ess3/settings/antibuild/AntiBuild.java
@@ -11,24 +11,17 @@ import net.ess3.storage.StorageObject;
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"
- })
+ "Should people with build: false in permissions be allowed to build\n"
+ + "Set true to disable building for those people\n"
+ + "Setting to false means EssentialsAntiBuild will never prevent you from building")
private boolean disableBuild = 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"
- })
+ "Should people with build: false in permissions be allowed to use items\n"
+ + "Set true to disable using for those people\n"
+ + "Setting to false means EssentialsAntiBuild will never prevent you from using")
private boolean disableUse = true;
- @Comment(
- {
- "Should we tell people they are not allowed to build"
- })
+ @Comment("Should we tell people they are not allowed to build")
private boolean warnOnBuildDisallow = true;
-
private Alert alert = new Alert();
private BlackList blacklist = new BlackList();
-
}