This commit is contained in:
Prospector 2016-05-28 12:40:27 -07:00
commit d051286f95
3 changed files with 4 additions and 3 deletions

View file

@ -57,7 +57,7 @@ configurations {
}
version = "1.2.2"
version = "1.2.3"
def ENV = System.getenv()
if (ENV.BUILD_NUMBER) {

View file

@ -24,6 +24,7 @@ public class DynamicCell extends UniversalBucket{
super(1000, new ItemStack(ModItems.emptyCell), false);
setCreativeTab(TechRebornCreativeTab.instance);
setUnlocalizedName("techreborn.cellFilled");
setMaxStackSize(16);
}
@Override

View file

@ -16,7 +16,7 @@ import techreborn.items.ItemParts;
public class TileMatterFabricator extends TilePowerAcceptor implements IWrenchable,IInventoryProvider
{
public static int fabricationRate = 2666656;
public static int fabricationRate = 10000;
public int tickTime;
public Inventory inventory = new Inventory(7, "TileMatterFabricator", 64, this);
public int progresstime = 0;
@ -99,7 +99,7 @@ public class TileMatterFabricator extends TilePowerAcceptor implements IWrenchab
for (int i = 0; i < 6; i++)
{
ItemStack stack = inventory.getStackInSlot(i);
if (this.amplifier < 100000 && stack != null)
if (this.amplifier < 10000 && stack != null)
{
int amp = (int) ((long) (getValue(stack) / 32));
if (ItemUtils.isItemEqual(stack, inventory.getStackInSlot(i), true, true))