diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | FEATURES.md | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c6e19c76..fcfc9b068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ + Added **Visitor Timer** - Timer when the next visitor will appear, and a number how many visitors are already waiting. + Added **Visitor Notification** - Show as title and in chat when a new visitor is visiting your island. + Added **Plot Price** - Show the price of the plot in coins when inside the Configure Plots inventory. -+ Added **Garden Crop Milestone Display** - Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. (Requires an tool with either an counter or cultivating enchantment) Shows ++ Added **Garden Crop Milestone Display** - Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. (Requires a tool with either a counter or cultivating enchantment) + Added **Best Crop Display** - Lists all crops and their ETA till next milestone. Sorts for best crop for getting garden level or skyblock level. diff --git a/FEATURES.md b/FEATURES.md index 5654d9596..0d0de684b 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -169,7 +169,7 @@ + **Visitor Timer** - Timer when the next visitor will appear, and a number how many visitors are already waiting. + **Visitor Notification** - Show as title and in chat when a new visitor is visiting your island. + **Plot Price** - Show the price of the plot in coins when inside the Configure Plots inventory. -+ **Garden Crop Milestone Display** - Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. (Requires an tool with either an counter or cultivating enchantment) Shows ++ **Garden Crop Milestone Display** - Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. (Requires a tool with either a counter or cultivating enchantment) + **Best Crop Display** - Lists all crops and their ETA till next milestone. Sorts for best crop for getting garden level or skyblock level. ## Commands diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 91331bbd0..b0d445f5e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -120,8 +120,8 @@ public class Garden { @Expose @ConfigOption( name = "Progress Display", - desc = "Show how much more crops are needed to reach the next crop milestone. " + - "§cRequires an tool with either an counter or cultivating enchantment in the hand." + desc = "Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. " + + "§cRequires a tool with either a counter or cultivating enchantment." ) @ConfigEditorBoolean @ConfigAccordionId(id = 5) @@ -142,7 +142,7 @@ public class Garden { @Expose @ConfigOption( name = "Best Display", - desc = "Show a display with crops sorted by time.") + desc = "Lists all crops and their ETA till next milestone. Sorts for best crop for getting garden level or skyblock level.") @ConfigEditorBoolean @ConfigAccordionId(id = 6) public boolean cropMilestoneBestDisplay = true; |