aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2022-07-06 19:20:31 +0100
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2022-07-06 19:20:31 +0100
commit34f5f420d6741569e705455b07b4980c7e0fb114 (patch)
treec93778b0940ab847f72b829f3562f1764fca8d2f /common/src/main/java
parentc9a47f73f58312f5f7af4c8c3faaaac2c0d4ef0b (diff)
Add specific enchantment & level to enchanting task (closes #408)
Diffstat (limited to 'common/src/main/java')
-rw-r--r--common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java b/common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java
index 028669ac..09204fac 100644
--- a/common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java
+++ b/common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java
@@ -59,6 +59,13 @@ public enum ConfigProblemDescriptions {
"you can find the material list by searching for your<br>" +
"server version + 'Material ENUM'."
),
+ UNKNOWN_ENCHANTMENT("Enchantment '%s' does not exist",
+ "Enchantment '%s' does not exist on the server.<br>" +
+ "Please refer to the wiki for a list of javadocs<br>" +
+ "corresponding to your server version. Alternatively,<br>" +
+ "you can find the material list by searching for your<br>" +
+ "server version + 'Enchantment javadoc'."
+ ),
UNKNOWN_ENTITY_TYPE("Entity type '%s' does not exist",
"Entity type '%s' does not exist on the server.<br>" +
"Please refer to the wiki for a list of javadocs<br>" +
@@ -94,7 +101,7 @@ public enum ConfigProblemDescriptions {
"This may be the result of a cascading error<br>" +
"if '%s' failed to load, or a mis-typed ID."
),
- NOT_ACCEPTED_VALUE("Value '%s' is not in the list of accepted values for task %s: %s", null);
+ NOT_ACCEPTED_VALUE("Value '%s' is not in the list of accepted values for task %s", null);
private final String description;
private final String extendedDescription;