diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 14:21:30 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 14:21:30 +0100 |
commit | 2dbc9dffa837e0b4041abcccfade0cb3a14c1d5a (patch) | |
tree | ccfd7adebf5d4304a5d07a455b4e172bd90fbac1 /src/main | |
parent | 0fd05835b7ef8de466db927199a6189c37487b9c (diff) | |
download | skyhanni-2dbc9dffa837e0b4041abcccfade0cb3a14c1d5a.tar.gz skyhanni-2dbc9dffa837e0b4041abcccfade0cb3a14c1d5a.tar.bz2 skyhanni-2dbc9dffa837e0b4041abcccfade0cb3a14c1d5a.zip |
more compact money/hr display
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt index a59aa22ee..d004befd8 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/CropMoneyDisplay.kt @@ -60,7 +60,7 @@ class CropMoneyDisplay { val newDisplay = mutableListOf<List<Any>>() val title = if (config.moneyPerHourCompact) { - Collections.singletonList("§7Money per hour:") + Collections.singletonList("§7Money/hour:") } else { Collections.singletonList("§7Money per hour when selling:") } |