diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-28 16:58:39 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-28 16:58:39 +1000 |
commit | c0669bb2a46b898141643be6b8f621c964c32c8b (patch) | |
tree | 0163a8ea62a85eb006eea43bd5d4d248202685b5 /src/Java/gtPlusPlus/xmod/eio/handler | |
parent | 3915e405a70be4d9523ace59a9194a3757cb5a37 (diff) | |
download | GT5-Unofficial-c0669bb2a46b898141643be6b8f621c964c32c8b.tar.gz GT5-Unofficial-c0669bb2a46b898141643be6b8f621c964c32c8b.tar.bz2 GT5-Unofficial-c0669bb2a46b898141643be6b8f621c964c32c8b.zip |
+ Added support for IC2C. (Support means that the game will load if this mod exists.. maybe? Should fix #287, I guess.)
+ Added tooltips to turbines if the animated textures are on, if user holds shift full tooltip will be shown.
- Removed some Thaumcraft logging.
% More changes to fix NEI handler for Multiblocks.
% Moved Tooltip handling for a few things from the EIO handler to a generic handler.
$ Fixed %'s not showing (third time lucky) on NEI pages.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/eio/handler')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/eio/handler/HandlerTooltip_EIO.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Java/gtPlusPlus/xmod/eio/handler/HandlerTooltip_EIO.java b/src/Java/gtPlusPlus/xmod/eio/handler/HandlerTooltip_EIO.java index c266d55cac..788e4d6d9f 100644 --- a/src/Java/gtPlusPlus/xmod/eio/handler/HandlerTooltip_EIO.java +++ b/src/Java/gtPlusPlus/xmod/eio/handler/HandlerTooltip_EIO.java @@ -6,13 +6,10 @@ import java.lang.reflect.Field; import cpw.mods.fml.common.eventhandler.SubscribeEvent; -import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; - import gregtech.api.enums.Materials; -import gtPlusPlus.core.handler.events.BlockEventHandler; import gtPlusPlus.core.lib.LoadedMods; import gtPlusPlus.core.util.minecraft.ItemUtils; import gtPlusPlus.xmod.eio.material.MaterialEIO; @@ -130,26 +127,6 @@ public class HandlerTooltip_EIO { } } - if (!BlockEventHandler.blockLimestone.isEmpty()) { - for (ItemStack h : BlockEventHandler.blockLimestone) { - if (h != null && Block.getBlockFromItem(h.getItem()) == Block.getBlockFromItem(event.itemStack.getItem())) { - if (ItemUtils.getModId(h) != null && !ItemUtils.getModId(h).toLowerCase().contains("biomesoplenty")) { - event.toolTip.add("May contain Fluorite Ore"); - } - } - } - } - if (!BlockEventHandler.oreLimestone.isEmpty()) { - for (ItemStack h : BlockEventHandler.oreLimestone) { - if (h != null && Block.getBlockFromItem(h.getItem()) == Block.getBlockFromItem(event.itemStack.getItem())) { - if (ItemUtils.getModId(h) != null && !ItemUtils.getModId(h).toLowerCase().contains("biomesoplenty")) { - event.toolTip.add("May contain Fluorite Ore"); - } - } - } - } - - } } |