Draw hologram button on background

This commit is contained in:
drcrazy 2018-12-30 22:31:52 +03:00
parent 03fdbe49a6
commit 3df454789f
7 changed files with 22 additions and 10 deletions

View file

@ -76,7 +76,7 @@ public class TileIndustrialGrinder extends TileGenericMachine implements IContai
this.ticksSinceLastChange = 0;
}
public boolean getMutliBlock() {
public boolean getMultiBlock() {
if (multiblockChecker == null) {
return false;
}
@ -108,7 +108,7 @@ public class TileIndustrialGrinder extends TileGenericMachine implements IContai
ticksSinceLastChange = 0;
}
if (!world.isRemote && getMutliBlock()) {
if (!world.isRemote && getMultiBlock()) {
super.update();
}
@ -155,7 +155,7 @@ public class TileIndustrialGrinder extends TileGenericMachine implements IContai
// ITileRecipeHandler
@Override
public boolean canCraft(final TileEntity tile, final IndustrialGrinderRecipe recipe) {
if (!getMutliBlock()) {
if (!getMultiBlock()) {
return false;
}
final FluidStack recipeFluid = recipe.fluidStack;