diff options
author | DoKM <mcazzyman@gmail.com> | 2021-07-21 14:47:22 +0200 |
---|---|---|
committer | DoKM <mcazzyman@gmail.com> | 2021-07-21 14:47:22 +0200 |
commit | 52569e58afb3a2c6be37a3ec81638bf551d6a6dc (patch) | |
tree | 474892a56ad4761e4c45f673db45bd4203d4979f | |
parent | 1d126ec24466cf7fdadb1f98b15f61eada90b5cf (diff) | |
download | NotEnoughUpdates-52569e58afb3a2c6be37a3ec81638bf551d6a6dc.tar.gz NotEnoughUpdates-52569e58afb3a2c6be37a3ec81638bf551d6a6dc.tar.bz2 NotEnoughUpdates-52569e58afb3a2c6be37a3ec81638bf551d6a6dc.zip |
change mithril display from block prismarine to item primarine crystals
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java index 49fa18d9..9d1959ad 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ProfileViewer.java @@ -182,7 +182,7 @@ public class ProfileViewer { EnumChatFormatting.GRAY+"Sand"));
collectionToCollectionDisplayMap.put("ENDER_STONE", Utils.createItemStack(Item.getItemFromBlock(Blocks.end_stone),
EnumChatFormatting.GRAY+"End Stone"));
- collectionToCollectionDisplayMap.put("MITHRIL_ORE", Utils.createItemStack(Item.getItemFromBlock(Blocks.prismarine),
+ collectionToCollectionDisplayMap.put("MITHRIL_ORE", Utils.createItemStack(Items.prismarine_crystals,
EnumChatFormatting.GRAY+"Mithril"));
collectionToCollectionDisplayMap.put("HARD_STONE", Utils.createItemStack(Item.getItemFromBlock(Blocks.stone),
EnumChatFormatting.GRAY+"Hard Stone"));
|