diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-15 10:36:57 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-15 10:36:57 +0200 |
commit | 5eae6a82b10cca07f3148f4d831ce285051634ca (patch) | |
tree | ae669f050b2f2aa8caeb3fde92dac7c07919d656 /src/main/java/at/hannibal2/skyhanni/features/garden | |
parent | b1a2491e9a84b8a4a6261b43f97d3a907d979f06 (diff) | |
download | skyhanni-5eae6a82b10cca07f3148f4d831ce285051634ca.tar.gz skyhanni-5eae6a82b10cca07f3148f4d831ce285051634ca.tar.bz2 skyhanni-5eae6a82b10cca07f3148f4d831ce285051634ca.zip |
Added /shcopyinternalname and hotkey to copy internal names of items
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/garden')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt index f90fbd625..b89677aa0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt @@ -18,7 +18,6 @@ import at.hannibal2.skyhanni.utils.SkyBlockItemModifierUtils.getEnchantments import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher import at.hannibal2.skyhanni.utils.StringUtils.removeColor import at.hannibal2.skyhanni.utils.TabListData -import net.minecraft.client.Minecraft import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import kotlin.math.round @@ -44,7 +43,7 @@ class CaptureFarmingGear { val farmingItems = farmingItems ?: return val resultList = mutableListOf<String>() - val itemStack = Minecraft.getMinecraft().thePlayer.inventory.getCurrentItem() ?: return + val itemStack = InventoryUtils.getItemInHand() ?: return val itemID = itemStack.getInternalName_old() resultList.add(itemStack.displayName.toString()) resultList.add(itemID) |