mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
missing else :v
This commit is contained in:
parent
c9ffb0c630
commit
7c0ca04e85
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ public abstract class TileEntityBase extends TileEntity implements ITickable{
|
||||||
return (T)handler;
|
return (T)handler;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY){
|
else if(capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY){
|
||||||
IFluidHandler tank = this.getFluidHandler(facing);
|
IFluidHandler tank = this.getFluidHandler(facing);
|
||||||
if(tank != null){
|
if(tank != null){
|
||||||
return (T)tank;
|
return (T)tank;
|
||||||
|
|
Loading…
Reference in a new issue