summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/Commands.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/settings/Commands.java')
-rw-r--r--Essentials/src/net/ess3/settings/Commands.java18
1 files changed, 8 insertions, 10 deletions
diff --git a/Essentials/src/net/ess3/settings/Commands.java b/Essentials/src/net/ess3/settings/Commands.java
index 8ca36bfab..be95b0f52 100644
--- a/Essentials/src/net/ess3/settings/Commands.java
+++ b/Essentials/src/net/ess3/settings/Commands.java
@@ -27,16 +27,14 @@ public class Commands implements StorageObject
private Speed speed = new Speed();
@ListType
@Comment(
- {
- "When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take",
- "priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:",
- "usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.",
- "For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god",
- "will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an \"e\",",
- "such as /egod, will always grant Essentials priority.",
- "We should try to take priority over /god. If this doesn't work, use /essentials:god or /egod.",
- "If god is set using WorldGuard, use /ungod to remove then use whichever you see fit."
- })
+ "When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take\n"
+ + "priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:\n"
+ + "usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.\n"
+ + "For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god\n"
+ + "will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an \"e\",\n"
+ + "such as /egod, will always grant Essentials priority.\n"
+ + "We should try to take priority over /god. If this doesn't work, use /essentials:god or /egod.\n"
+ + "If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.")
@Getter(AccessLevel.NONE)
@Setter(AccessLevel.NONE)
private List<String> overridden = null;