From 3539dbe69a0782c519aa7d0fd38b7b58df154fd8 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Fri, 15 Jul 2022 23:59:15 +0200 Subject: add attribute fusion gui to hide not clickable --- .../java/at/hannibal2/skyhanni/utils/ItemUtils.kt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/utils') diff --git a/src/main/java/at/hannibal2/skyhanni/utils/ItemUtils.kt b/src/main/java/at/hannibal2/skyhanni/utils/ItemUtils.kt index 83b4ae3da..6d84c7285 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/ItemUtils.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/ItemUtils.kt @@ -2,6 +2,8 @@ package at.hannibal2.skyhanni.utils import at.hannibal2.skyhanni.utils.LorenzUtils.matchRegex import at.hannibal2.skyhanni.utils.LorenzUtils.removeColorCodes +import com.google.gson.GsonBuilder +import com.google.gson.JsonObject import net.minecraft.client.Minecraft import net.minecraft.client.gui.inventory.GuiChest import net.minecraft.item.ItemStack @@ -75,4 +77,22 @@ object ItemUtils { return map } + + fun hasAttributes(stack: ItemStack): Boolean { + if (stack.hasTagCompound()) { + val tagCompound = stack.tagCompound + if (tagCompound.hasKey("ExtraAttributes")) { + val extraAttributes = tagCompound.getCompoundTag("ExtraAttributes") + try { + val json = GsonBuilder().create().fromJson(extraAttributes.toString(), JsonObject::class.java) + if (json.has("attributes")) { + return true + } + } catch (e: Exception) { + e.printStackTrace() + } + } + } + return false + } } \ No newline at end of file -- cgit