aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/combat
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-03-21 21:08:34 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-03-21 21:08:34 +0100
commit181d311d5c02e28995082edc59916371be991f68 (patch)
tree75dd1d783b23de02c6f3092b59ec350dd2c5bb43 /src/main/java/at/hannibal2/skyhanni/features/combat
parente66f45ac7ea014bcf579b7a3d56033d082ebb763 (diff)
downloadskyhanni-181d311d5c02e28995082edc59916371be991f68.tar.gz
skyhanni-181d311d5c02e28995082edc59916371be991f68.tar.bz2
skyhanni-181d311d5c02e28995082edc59916371be991f68.zip
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/combat')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt
index 106d6e84d..8c6d7fdec 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt
@@ -284,8 +284,9 @@ object GhostCounter {
}
val moneyMadeWithClickableTips = Renderable.clickAndHover(
textFormatting.moneyMadeFormat.formatText(moneyMade.addSeparators()),
- moneyMadeTips, onClick =
- { OSUtils.copyToClipboard(moneyMadeTips.joinToString("\n").removeColor()) })
+ moneyMadeTips,
+ onClick = { OSUtils.copyToClipboard(moneyMadeTips.joinToString("\n").removeColor()) }
+ )
addAsSingletonList(textFormatting.moneyHourFormat.formatText(final))
addAsSingletonList(moneyMadeWithClickableTips)
}