Mass fabricator fix and Charcoal pit oredict support.
This commit is contained in:
parent
143176dae3
commit
063a758961
3 changed files with 19 additions and 12 deletions
|
@ -1,7 +1,7 @@
|
|||
minecraft.version=1.7.10
|
||||
forge.version=10.13.4.1517-1.7.10
|
||||
|
||||
gt.version=5.09.12
|
||||
gt.version=5.09.13
|
||||
|
||||
ae2.version=rv2-beta-33
|
||||
applecore.version=1.7.10-1.2.1+107.59407
|
||||
|
|
|
@ -56,8 +56,8 @@ public class GT_MetaTileEntity_Massfabricator
|
|||
FluidStack tFluid = getDrainableStack();
|
||||
if ((tFluid == null) || (tFluid.amount < getCapacity())) {
|
||||
this.mOutputFluid = Materials.UUMatter.getFluid(1L);
|
||||
this.mEUt = ((int) gregtech.api.enums.GT_Values.V[this.mTier]) * 8;
|
||||
this.mMaxProgresstime = (sDurationMultiplier / (1 << (this.mTier * 2) - 2));
|
||||
this.mEUt = (((int) gregtech.api.enums.GT_Values.V[1]) * (int)Math.pow(2, this.mTier + 2));
|
||||
this.mMaxProgresstime = (sDurationMultiplier / (1 << this.mTier - 1));
|
||||
if (((tFluid = getFillableStack()) != null) && (tFluid.amount >= sUUAperUUM) && (tFluid.isFluidEqual(Materials.UUAmplifier.getFluid(1L)))) {
|
||||
tFluid.amount -= sUUAperUUM;
|
||||
this.mMaxProgresstime /= sUUASpeedBonus;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package gregtech.common.tileentities.machines.multi;
|
||||
|
||||
import gregtech.api.GregTech_API;
|
||||
import gregtech.api.enums.OrePrefixes;
|
||||
import gregtech.api.enums.Textures;
|
||||
import gregtech.api.interfaces.ITexture;
|
||||
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
|
||||
|
@ -9,6 +10,7 @@ import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_MultiBlockB
|
|||
import gregtech.api.objects.GT_RenderedTexture;
|
||||
import gregtech.api.util.GT_Recipe;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
@ -92,10 +94,10 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
ArrayList<ChunkPosition> tList2 = new ArrayList();
|
||||
|
||||
Block tBlock = this.getBaseMetaTileEntity().getBlockOffset(0, -1, 0);
|
||||
if (tBlock != Blocks.log && tBlock != Blocks.log2) {
|
||||
if (!isWoodLog(tBlock)) {
|
||||
return false;
|
||||
} else {
|
||||
tList2.add(new ChunkPosition(0, -1, 0));//this.getBaseMetaTileEntity().getXCoord(), this.getBaseMetaTileEntity().getYCoord()-1, this.getBaseMetaTileEntity().getZCoord()));
|
||||
tList2.add(new ChunkPosition(0, -1, 0));
|
||||
}
|
||||
while (!tList2.isEmpty()) {
|
||||
ChunkPosition tPos = (ChunkPosition) tList2.get(0);
|
||||
|
@ -106,7 +108,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
if (running) {
|
||||
for (ChunkPosition tPos : tList1) {
|
||||
if (this.getBaseMetaTileEntity().getBlockOffset(tPos.chunkPosX, tPos.chunkPosY, tPos.chunkPosZ) == Blocks.log)
|
||||
if (isWoodLog(this.getBaseMetaTileEntity().getBlockOffset(tPos.chunkPosX, tPos.chunkPosY, tPos.chunkPosZ)))
|
||||
this.getBaseMetaTileEntity().getWorld().setBlock(this.getBaseMetaTileEntity().getXCoord() + tPos.chunkPosX, this.getBaseMetaTileEntity().getYCoord() + tPos.chunkPosY, this.getBaseMetaTileEntity().getZCoord() + tPos.chunkPosZ, GregTech_API.sBlockReinforced, 4, 3);
|
||||
}
|
||||
running = false;
|
||||
|
@ -126,7 +128,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
p5 = false;
|
||||
p6 = false;
|
||||
Block tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX + 1, aY, aZ);
|
||||
if (aX + 1 < 6 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aX + 1 < 6 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX + 1, aY, aZ)) && (!aList2.contains(new ChunkPosition(aX + 1, aY, aZ))))
|
||||
p1 = true;
|
||||
} else if (!(tBlock == Blocks.dirt || tBlock == Blocks.grass)) {
|
||||
|
@ -134,7 +136,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
|
||||
tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX - 1, aY, aZ);
|
||||
if (aX - 1 > -6 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aX - 1 > -6 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX - 1, aY, aZ)) && (!aList2.contains(new ChunkPosition(aX - 1, aY, aZ))))
|
||||
p2 = true;
|
||||
} else if (!(tBlock == Blocks.dirt || tBlock == Blocks.grass)) {
|
||||
|
@ -142,7 +144,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
|
||||
tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX, aY + 1, aZ);
|
||||
if (aY + 1 < 1 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aY + 1 < 1 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX, aY + 1, aZ)) && (!aList2.contains(new ChunkPosition(aX, aY + 1, aZ))))
|
||||
p3 = true;
|
||||
} else if (!(tBlock == Blocks.dirt || tBlock == Blocks.grass || (aX == 0 && aY == -1 && aZ == 0 && tBlock == GregTech_API.sBlockMachines))) {
|
||||
|
@ -150,7 +152,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
|
||||
tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX, aY - 1, aZ);
|
||||
if (aY - 1 > -6 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aY - 1 > -6 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX, aY - 1, aZ)) && (!aList2.contains(new ChunkPosition(aX, aY - 1, aZ))))
|
||||
p4 = true;
|
||||
} else if (tBlock != Blocks.brick_block) {
|
||||
|
@ -158,7 +160,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
|
||||
tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX, aY, aZ + 1);
|
||||
if (aZ + 1 < 6 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aZ + 1 < 6 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX, aY, aZ + 1)) && (!aList2.contains(new ChunkPosition(aX, aY, aZ + 1))))
|
||||
p5 = true;
|
||||
} else if (!(tBlock == Blocks.dirt || tBlock == Blocks.grass)) {
|
||||
|
@ -166,7 +168,7 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
}
|
||||
|
||||
tBlock = this.getBaseMetaTileEntity().getBlockOffset(aX, aY, aZ - 1);
|
||||
if (aZ - 1 > -6 && (tBlock == Blocks.log || tBlock == Blocks.log2)) {
|
||||
if (aZ - 1 > -6 && (isWoodLog(tBlock))) {
|
||||
if (!aList1.contains(new ChunkPosition(aX, aY, aZ - 1)) && (!aList2.contains(new ChunkPosition(aX, aY, aZ - 1))))
|
||||
p6 = true;
|
||||
} else if (!(tBlock == Blocks.dirt || tBlock == Blocks.grass)) {
|
||||
|
@ -181,6 +183,11 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_MultiBlock
|
|||
if (p6) aList2.add(new ChunkPosition(aX, aY, aZ - 1));
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean isWoodLog(Block log){
|
||||
String tTool = log.getHarvestTool(0);
|
||||
return OrePrefixes.log.contains(new ItemStack(log, 1))&& ((tTool != null) && (tTool.equals("axe"))) || (log.getMaterial() == Material.wood);
|
||||
}
|
||||
|
||||
public boolean checkMachine(IGregTechTileEntity aBaseMetaTileEntity, ItemStack aStack) {
|
||||
mWrench = true;
|
||||
|
|
Loading…
Reference in a new issue