From a2e1983b47392d7724df78f842ef81bfb6f67d60 Mon Sep 17 00:00:00 2001 From: Ascynx <78341107+Ascynx@users.noreply.github.com> Date: Sat, 22 Oct 2022 04:33:57 +0200 Subject: Merge pull request #310 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * neuec tooltip cache * forgor to remove (W.I.P) * forgot to make it on by default * Format and comment change * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * Merge remote-tracking branch 'origin/enchant-optimisation' into encha… * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * bing bong fps gon * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation * remove max book blurb because in theory it will be added to the repo * Merge branch 'master' into enchant-optimisation * Merge branch 'master' into enchant-optimisation * Fixed issues * Moved Custom enchant colour stuff to it's own accordion * Merge branch 'NotEnoughUpdates:master' into enchant-optimisation --- .../moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java index e1b9d567..15fc8ef8 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/ItemCustomizeManager.java @@ -269,7 +269,7 @@ public class ItemCustomizeManager { return CUSTOM_GLINT_TEXTURE; } - private static String getUuidForItem(ItemStack stack) { + public static String getUuidForItem(ItemStack stack) { if (!stack.hasTagCompound()) return null; int nbtHash = stack.getTagCompound().hashCode(); -- cgit