Fixed a bug where the Bricked Blast Furnace didn't need a casing.
I forgot to actually implement checking whether the casing blocks are Firerick blocks.
This commit is contained in:
parent
4061f8f397
commit
6a9e0756d6
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
package gregtech.common.tileentities.machines.multi;
|
||||
|
||||
import gregtech.api.GregTech_API;
|
||||
import gregtech.api.enums.Textures;
|
||||
import gregtech.api.interfaces.ITexture;
|
||||
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
|
||||
|
@ -42,12 +43,12 @@ public class GT_MetaTileEntity_BrickedBlastFurnace extends GT_MetaTileEntity_Pri
|
|||
|
||||
@Override
|
||||
protected boolean isCorrectCasingBlock(Block block) {
|
||||
return true;
|
||||
return block == GregTech_API.sBlockCasings4;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isCorrectCasingMetaID(int metaID) {
|
||||
return true;
|
||||
return metaID == 15;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue