diff options
| author | Krakenied <Krakenied1@gmail.com> | 2024-02-20 09:39:38 +0100 |
|---|---|---|
| committer | Leonardo Bishop <13875753+LMBishop@users.noreply.github.com> | 2024-02-22 16:35:06 +0000 |
| commit | 03be381bc8a7ada87c5f1d1114861914e32432ce (patch) | |
| tree | 43c7ed8e757afb82c456981af4b57254e7c17426 /common | |
| parent | 46501dd3efbbbfe7ce99740a082bf6f326713a7f (diff) | |
Fix config validators descriptions
Diffstat (limited to 'common')
| -rw-r--r-- | common/src/main/java/com/leonardobishop/quests/common/config/ConfigProblemDescriptions.java | 12 |
1 files changed, 9 insertions, 3 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 dc53ec22..68298bba 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 @@ -65,21 +65,27 @@ public enum ConfigProblemDescriptions { "Dye color '%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>" + + "you can find the dye color list by searching for your<br>" + "server version + 'DyeColor 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>" + + "you can find the enchantment 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>" + "corresponding to your server version. Alternatively,<br>" + - "you can find the material list by searching for your<br>" + + "you can find the entity type list by searching for your<br>" + "server version + 'EntityType ENUM'."), + UNKNOWN_SPAWN_REASON("Spawn reason '%s' does not exist", + "Spawn reason '%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 spawn reason list by searching for your<br>" + + "server version + 'SpawnReason ENUM'."), TASK_MALFORMED_NOT_SECTION("Task '%s' is not a configuration section", "Task '%s' is not properly formatted as a<br>" + "configuration section. Please review the wiki<br>" + |
