Draw hologram button on background
This commit is contained in:
parent
03fdbe49a6
commit
3df454789f
7 changed files with 22 additions and 10 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue