diff options
author | J10a1n15 <45315647+j10a1n15@users.noreply.github.com> | 2024-03-19 10:15:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 10:15:03 +0100 |
commit | dc391b540873a9e34d3f9bb75b7b9e84690357e2 (patch) | |
tree | 93a1fb29f2e278db1ea9bc6f9134fcd75a1a16fc /src/main/java/at/hannibal2/skyhanni/data | |
parent | ab060b5823d5eb5946aa80eea12c77896ece8fed (diff) | |
download | skyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.tar.gz skyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.tar.bz2 skyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.zip |
Improvement + Fix: Custom Scoreboard Fixes Part 4 (#1212)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt index 98c410b86..e584efd80 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt @@ -125,13 +125,13 @@ object MaxwellAPI { if (tunings?.isNotEmpty() == true) { val tuningsInScoreboard = ScoreboardElement.TUNING in CustomScoreboard.config.scoreboardEntries if (tuningsInScoreboard) { - ChatUtils.chat("Talk to Maxwell again to update the tuning data in scoreboard.") + ChatUtils.chat("Talk to Maxwell and open the Tuning Page again to update the tuning data in scoreboard.") } } } } - // load earler, so that other features can already use the api in this event + // load earlier, so that other features can already use the api in this event @SubscribeEvent(priority = EventPriority.HIGH) fun onInventoryFullyLoaded(event: InventoryOpenEvent) { if (!isEnabled()) return @@ -200,7 +200,7 @@ object MaxwellAPI { private fun loadThaumaturgyTunings(inventoryItems: Map<Int, ItemStack>) { val tunings = tunings ?: return - // Only load those rounded values if we dont have any valurs at all + // Only load those rounded values if we dont have any values at all if (tunings.isNotEmpty()) return val item = inventoryItems[51] ?: return |