Make default for RebornStorage compat.

This commit is contained in:
raoulvdberge
2018-07-23 23:04:39 +02:00
parent 5eab682267
commit efc5cc0684

View File

@@ -28,9 +28,13 @@ public interface ICraftingPatternContainer {
/**
* @return the fluid inventory that this container is connected to, or null if no fluid inventory is present
*
* TODO: remove default.
*/
@Nullable
IFluidHandler getConnectedFluidInventory();
default IFluidHandler getConnectedFluidInventory() {
return null;
}
/**
* @return the tile that this container is connected to, or null if no tile is present