From b4b13f5ac68f3c5a03ff2e8507342fbc17e7076f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:54:16 +0200 Subject: Coping the amount into the clipboard when clicking on the visitor item list --- .../hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/at/hannibal2') diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt index 458e8e218..0f83ceea8 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt @@ -142,6 +142,7 @@ class GardenVisitorFeatures { } else if (!InventoryUtils.inStorage()) { val thePlayer = Minecraft.getMinecraft().thePlayer thePlayer.sendChatMessage("/bz ${name.removeColor()}"); + OSUtils.copyToClipboard("$amount") } }) { GardenAPI.inGarden() && !InventoryUtils.inStorage() }) -- cgit