BuildCraft 7.1.6

This commit is contained in:
asiekierka 2015-10-02 15:05:21 +02:00
parent ac5f5a5faa
commit 91590f4391
11 changed files with 4 additions and 22 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.5"
version = "7.1.6"
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]

View file

@ -1,6 +1,7 @@
Improvements:
* "/buildcraft op" and "/buildcraft deop" commands, letting you easily op/deop the BuildCraft "fake player" (asie)
* Improved vanilla/BuildCraft tile Builder compatibility (asie)
* New Quarry frame model (asie)
* Quarry now rebuilds its own frame if it is removed (asie)
@ -15,5 +16,6 @@ Bugs fixed:
* Frame icon not rendering on Quarry frame building (asie)
* Incorrect composite tank capacity calculation (indemnity83, Thog)
* NullPointerException on invalid StackRequest saving (asie)
* Rare MapChunk crash (asie)
* Rare StackOverflowException on breaking Markers (asie)
* StackOverflowException when breaking large Quarry frames (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.5
1.7.10:BuildCraft:7.1.6

View file

@ -1,7 +1,6 @@
package buildcraft.builders.render;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.world.IBlockAccess;
@ -10,7 +9,6 @@ import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
import net.minecraftforge.common.util.ForgeDirection;
import buildcraft.BuildCraftBuilders;
import buildcraft.builders.BuilderProxy;
import buildcraft.core.CoreConstants;
import buildcraft.core.lib.render.FakeBlock;

View file

@ -1,6 +1,5 @@
package buildcraft.builders.schematics;
import buildcraft.api.blueprints.IBuilderContext;
import buildcraft.core.builders.schematics.SchematicRotateMeta;
public class SchematicBuilderLike extends SchematicRotateMeta {

View file

@ -8,9 +8,6 @@
*/
package buildcraft.builders.schematics;
import java.util.LinkedList;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import buildcraft.api.blueprints.IBuilderContext;

View file

@ -53,7 +53,6 @@ import buildcraft.core.builders.IBuildingItemsProvider;
import buildcraft.core.builders.TileAbstractBuilder;
import buildcraft.core.lib.inventory.InventoryCopy;
import buildcraft.core.lib.inventory.InventoryIterator;
import buildcraft.core.lib.inventory.StackHelper;
import buildcraft.core.lib.utils.BlockUtils;
public class BptBuilderBlueprint extends BptBuilderBase {

View file

@ -32,7 +32,6 @@ import buildcraft.api.blueprints.SchematicMask;
import buildcraft.api.core.BCLog;
import buildcraft.api.core.Position;
import buildcraft.core.blueprints.IndexRequirementMap;
import buildcraft.core.lib.inventory.StackHelper;
import buildcraft.core.lib.utils.BlockUtils;
public class BuildingSlotBlock extends BuildingSlot {

View file

@ -4,7 +4,6 @@ import net.minecraft.command.ICommandSender;
import net.minecraft.server.MinecraftServer;
import buildcraft.BuildCraftCore;
import buildcraft.core.Version;
import buildcraft.core.lib.commands.CommandHelpers;
import buildcraft.core.lib.commands.SubCommand;

View file

@ -10,22 +10,14 @@ package buildcraft.core.render;
import java.util.HashMap;
import org.lwjgl.opengl.GL11;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.IBlockAccess;
import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
import buildcraft.BuildCraftCore;
import buildcraft.core.CoreConstants;
import buildcraft.core.lib.render.IInventoryRenderer;
import buildcraft.core.lib.utils.Utils;
public class RenderingEntityBlocks implements ISimpleBlockRenderingHandler {

View file

@ -78,9 +78,6 @@ public class TileAssemblyTable extends TileLaserTableBase implements IInventory,
}
if (currentRecipe == null) {
/* if (getEnergy() >= 50) {
setEnergy(Math.max(0, getEnergy() - 50));
} */
return;
}