BuildCraft 7.1.17

This commit is contained in:
asiekierka 2016-06-28 21:50:02 +02:00
parent 2bdabf6a1c
commit c50632d93f
4 changed files with 7 additions and 5 deletions

View file

@ -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

View file

@ -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)

View file

@ -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

View file

@ -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;