From c50632d93f0235b1282bc43f553c1b2e95a5beeb Mon Sep 17 00:00:00 2001 From: asiekierka Date: Tue, 28 Jun 2016 21:50:02 +0200 Subject: [PATCH] BuildCraft 7.1.17 --- build.gradle | 4 ++-- buildcraft_resources/changelog/7.1.17 | 4 ++++ buildcraft_resources/versions.txt | 2 +- common/buildcraft/core/lib/utils/BlockMiner.java | 2 -- 4 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 buildcraft_resources/changelog/7.1.17 diff --git a/build.gradle b/build.gradle index 36654975..d8b4a5cf 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.16" +version = "7.1.17" 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] @@ -30,7 +30,7 @@ ext.mcModInfo = new groovy.json.JsonSlurper().parse(file("buildcraft_resources/m ext.priv = parseConfig(file('private.properties')) minecraft { - version = "1.7.10-10.13.4.1490-1.7.10" // McVersion-ForgeVersion this variable is later changed to contain only the MC version, while the apiVersion variable is used for the forge version. Yeah its stupid, and will be changed eentually. + version = "1.7.10-10.13.4.1614-1.7.10" // McVersion-ForgeVersion this variable is later changed to contain only the MC version, while the apiVersion variable is used for the forge version. Yeah its stupid, and will be changed eentually. runDir = "run" // the directory for ForgeGradle to run Minecraft in diff --git a/buildcraft_resources/changelog/7.1.17 b/buildcraft_resources/changelog/7.1.17 new file mode 100644 index 00000000..88130f2c --- /dev/null +++ b/buildcraft_resources/changelog/7.1.17 @@ -0,0 +1,4 @@ +Bugs fixed: + +* [#3323] Make some BuildCraft machines report the FakePlayer location as the acting tile entity (asie) +* [#3275] Slightly incorrect usage of extractEnergy in PipePowerWood (asie) diff --git a/buildcraft_resources/versions.txt b/buildcraft_resources/versions.txt index 36f743b4..64b36151 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.16 +1.7.10:BuildCraft:7.1.17 diff --git a/common/buildcraft/core/lib/utils/BlockMiner.java b/common/buildcraft/core/lib/utils/BlockMiner.java index 24be51fa..f51d8724 100644 --- a/common/buildcraft/core/lib/utils/BlockMiner.java +++ b/common/buildcraft/core/lib/utils/BlockMiner.java @@ -4,14 +4,12 @@ import java.util.List; import net.minecraft.block.Block; import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import net.minecraft.world.WorldServer; import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.common.util.FakePlayer; import net.minecraftforge.common.util.ForgeDirection; import net.minecraftforge.event.world.BlockEvent;