diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-05-24 16:45:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 16:45:15 +0200 |
commit | 12582fb1cec74a5d05a1adfedc1eb04e4f7409c1 (patch) | |
tree | 18ebd936b02506772cd2004d0c893d8dcecb1cad /src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java | |
parent | c39086946112174b81612e7fd96a2ce0ad056620 (diff) | |
parent | a4e104881944bbc03eddeacb24a6b7bd94cc53ce (diff) | |
download | GT5-Unofficial-12582fb1cec74a5d05a1adfedc1eb04e4f7409c1.tar.gz GT5-Unofficial-12582fb1cec74a5d05a1adfedc1eb04e4f7409c1.tar.bz2 GT5-Unofficial-12582fb1cec74a5d05a1adfedc1eb04e4f7409c1.zip |
Merge pull request #546 from GTNewHorizons/glow-texture
fix(render): grass block top grey in inventory
Diffstat (limited to 'src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java')
-rw-r--r-- | src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java b/src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java index 78c0fb85a1..3bdaf22f37 100644 --- a/src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java +++ b/src/main/java/gregtech/api/items/GT_RadioactiveCell_Item.java @@ -92,6 +92,7 @@ public class GT_RadioactiveCell_Item return 0; } + @Override public boolean isBookEnchantable(ItemStack itemstack1, ItemStack itemstack2) { return false; } @@ -138,6 +139,7 @@ public class GT_RadioactiveCell_Item setDamageForStack(stack, getDamageOfStack(stack) + Dmg); } + @Override public void addAdditionalToolTips(List aList, ItemStack aStack, EntityPlayer aPlayer) { super.addAdditionalToolTips(aList, aStack, aPlayer); //aList.add("Time left: " + (this.maxDelay - getDurabilityOfStack(aStack)) + " secs"); |