aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/inventory/SkyMartCopperPrice.kt4
2 files changed, 5 insertions, 5 deletions
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 e635bc0d7..c07806d80 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -13,18 +13,18 @@ import java.util.List;
public class Garden {
@Expose
- @ConfigOption(name = "Sky Mart", desc = "")
+ @ConfigOption(name = "SkyMart", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean skyMart = false;
@Expose
- @ConfigOption(name = "Copper Price", desc = "Show copper to coin prices inside the Sky Mart inventory.")
+ @ConfigOption(name = "Copper Price", desc = "Show copper to coin prices inside the SkyMart inventory.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean skyMartCopperPrice = true;
@Expose
- @ConfigOption(name = "Advanced stats", desc = "Show additionally the bin price and copper price for every item.")
+ @ConfigOption(name = "Advanced Stats", desc = "Show the bin price and copper price for every item.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean skyMartCopperPriceAdvancedStats = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/SkyMartCopperPrice.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/SkyMartCopperPrice.kt
index f6138e079..26e73be87 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/SkyMartCopperPrice.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/SkyMartCopperPrice.kt
@@ -72,10 +72,10 @@ class SkyMartCopperPrice {
display,
extraSpace = 5,
itemScale = 1.7,
- posLabel = "Sky Mart Copper Price"
+ posLabel = "SkyMart Copper Price"
)
}
}
private fun isEnabled() = GardenAPI.inGarden() && config.skyMartCopperPrice
-} \ No newline at end of file
+}