BuildCraft 6.2.1

This commit is contained in:
asiekierka 2014-11-30 00:32:28 +01:00
parent e0c96aa7d6
commit 5dcbf56c16
7 changed files with 15 additions and 22 deletions

View file

@ -1,17 +0,0 @@
package buildcraft.api.power;
/**
* Use this class for IEnergyHandlers which wish to receive
* Redstone Engine power.
*
* Please note, however, that BuildCraft's design does NOT
* want you to allow this for any block. Redstone engines
* generally emit 0.625 RF/t in pulses.
*
* Please consult us before having your tile entity
* implement this. We're making the interface public as
* an act of good will.
*/
public interface IRedstoneEnergyReceiver {
boolean canReceiveRedstoneEnergy();
}

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 = "6.2.0"
version = "6.2.1"
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

@ -0,0 +1,13 @@
Additions:
* If you set fullBoundingBoxLadders to true in forge.cfg, you can climb Mining Well pipes now!
* Minor optimizations via IntelliJ code coverage tools.
* Shift-hover over more advanced pipe items to get additional tips.
Bugfixes:
* [#2250] Duplication bug with BuildCraft tanks (asie)
* [#2246, #2244] RF API update causing serious issue - update reverted (asie)
* [#2241] Server crashes and world state corrupted because of Robot Trigger (asie)
* [#2234] Facades added through IMC only allow crafting of first metadata
* Fix API versioning, we're following semver for the API now! (asie)
* Many small bugfixes found via IntelliJ's code coverage tools (asie)
* Un-nerf Mining Wells (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:6.2.0
1.7.10:BuildCraft:6.2.1

View file

@ -14,7 +14,6 @@ import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Locale;
import java.util.Set;

View file

@ -10,7 +10,6 @@ package buildcraft.core.statements;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.IIcon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraftforge.common.util.ForgeDirection;

View file

@ -15,7 +15,6 @@ import java.util.List;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashBiMap;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;