BuildCraft 7.1.21
This commit is contained in:
parent
54eb54d59a
commit
d5033da8a1
7 changed files with 13 additions and 6 deletions
|
@ -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.20"
|
||||
version = "7.1.21"
|
||||
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]
|
||||
|
||||
|
|
7
buildcraft_resources/changelog/7.1.21
Normal file
7
buildcraft_resources/changelog/7.1.21
Normal file
|
@ -0,0 +1,7 @@
|
|||
Bugs fixed:
|
||||
|
||||
* [#3503] Auto Workbench dupe bug (asie)
|
||||
* [#3500] Rare division by zero error on world load (asie)
|
||||
* [#3498] Refinery deletes insufficient input fluids for non-standard refinery recipes (asie)
|
||||
* [#3496] Crafting Table IV rendering crash (asie)
|
||||
* [#3307] Auto Workbench not reacting to item insertion correctly in all cases (asie)
|
|
@ -1,3 +1,3 @@
|
|||
1.6.4:BuildCraft:4.2.2
|
||||
1.7.2:BuildCraft:6.0.16
|
||||
1.7.10:BuildCraft:7.1.20
|
||||
1.7.10:BuildCraft:7.1.21
|
||||
|
|
|
@ -646,8 +646,9 @@ public class BuildCraftCore extends BuildCraftMod {
|
|||
|
||||
BuildingSlotMapIterator.MAX_PER_ITEM = builderMaxPerItemFactor;
|
||||
|
||||
if (miningMultiplier <= 0)
|
||||
if (miningMultiplier <= 0) {
|
||||
throw new RuntimeException("Please do not set the miningMultiplier to values <= 0.0!");
|
||||
}
|
||||
|
||||
if (mainConfigManager.get("general.updateCheck").getBoolean(true)) {
|
||||
Version.check();
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package buildcraft.core.lib.utils;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.item.ItemBlock;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
|
|
|
@ -12,7 +12,6 @@ import java.util.HashSet;
|
|||
import java.util.Random;
|
||||
import java.util.Set;
|
||||
|
||||
import buildcraft.core.lib.block.BlockBuildCraftFluid;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockFlower;
|
||||
import net.minecraft.block.BlockStaticLiquid;
|
||||
|
@ -34,6 +33,7 @@ import net.minecraftforge.fluids.IFluidBlock;
|
|||
|
||||
import buildcraft.BuildCraftCore;
|
||||
import buildcraft.BuildCraftEnergy;
|
||||
import buildcraft.core.lib.block.BlockBuildCraftFluid;
|
||||
|
||||
public final class OilPopulate {
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@ package buildcraft.factory;
|
|||
import java.lang.ref.WeakReference;
|
||||
import java.util.List;
|
||||
|
||||
import buildcraft.api.tiles.IDebuggable;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.IInventory;
|
||||
import net.minecraft.inventory.ISidedInventory;
|
||||
|
@ -29,6 +28,7 @@ import net.minecraftforge.common.util.ForgeDirection;
|
|||
import buildcraft.api.core.IInvSlot;
|
||||
import buildcraft.api.power.IRedstoneEngine;
|
||||
import buildcraft.api.power.IRedstoneEngineReceiver;
|
||||
import buildcraft.api.tiles.IDebuggable;
|
||||
import buildcraft.api.tiles.IHasWork;
|
||||
import buildcraft.core.lib.RFBattery;
|
||||
import buildcraft.core.lib.block.TileBuildCraft;
|
||||
|
|
Loading…
Reference in a new issue