diff --git a/build.gradle b/build.gradle index d8b4a5cf..ee8a5e33 100755 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency apply plugin: 'maven' // for uploading to a maven repo apply plugin: 'checkstyle' -version = "7.1.17" +version = "7.1.18" group= "com.mod-buildcraft" archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension] diff --git a/buildcraft_resources/versions.txt b/buildcraft_resources/versions.txt index 64b36151..4415972f 100755 --- a/buildcraft_resources/versions.txt +++ b/buildcraft_resources/versions.txt @@ -1,3 +1,3 @@ 1.6.4:BuildCraft:4.2.2 1.7.2:BuildCraft:6.0.16 -1.7.10:BuildCraft:7.1.17 +1.7.10:BuildCraft:7.1.18 diff --git a/common/buildcraft/core/lib/engines/BlockEngineBase.java b/common/buildcraft/core/lib/engines/BlockEngineBase.java index eaf336b0..e18a1954 100644 --- a/common/buildcraft/core/lib/engines/BlockEngineBase.java +++ b/common/buildcraft/core/lib/engines/BlockEngineBase.java @@ -34,7 +34,6 @@ import buildcraft.api.events.BlockInteractionEvent; import buildcraft.api.transport.IItemPipe; import buildcraft.core.lib.block.BlockBuildCraft; import buildcraft.core.lib.render.ICustomHighlight; -import buildcraft.core.lib.utils.Utils; public abstract class BlockEngineBase extends BlockBuildCraft implements ICustomHighlight { private static final AxisAlignedBB[][] boxes = { @@ -260,8 +259,6 @@ public abstract class BlockEngineBase extends BlockBuildCraft implements ICustom /** * Checks to see if this block has an engine tile for the given metadata. - * - * Used for checking in {@link Utils#isRegistered(net.minecraft.item.ItemStack)} */ public abstract boolean hasEngine(int meta); }