Fix #1503
This commit is contained in:
parent
07ffd97e92
commit
e87f5fa27e
3 changed files with 3 additions and 3 deletions
|
@ -151,7 +151,7 @@ public class TileFluidReplicator extends TileGenericMachine implements IContaine
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return super.isItemValidForSlot(slotIndex, itemStack);
|
||||||
}
|
}
|
||||||
|
|
||||||
// IContainerProvider
|
// IContainerProvider
|
||||||
|
|
|
@ -158,7 +158,7 @@ public class TileIndustrialGrinder extends TileGenericMachine implements IContai
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return super.isItemValidForSlot(slotIndex, itemStack);
|
||||||
}
|
}
|
||||||
|
|
||||||
// IContainerProvider
|
// IContainerProvider
|
||||||
|
|
|
@ -159,7 +159,7 @@ public class TileIndustrialSawmill extends TileGenericMachine implements IContai
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return super.isItemValidForSlot(slotIndex, itemStack);
|
||||||
}
|
}
|
||||||
|
|
||||||
// IContainerProvider
|
// IContainerProvider
|
||||||
|
|
Loading…
Add table
Reference in a new issue