From 181d311d5c02e28995082edc59916371be991f68 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 21 Mar 2024 21:08:34 +0100 Subject: code cleanup --- .../hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/combat') 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) } -- cgit