mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +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;
|
||||
}
|
||||
}
|
||||
if(capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY){
|
||||
else if(capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY){
|
||||
IFluidHandler tank = this.getFluidHandler(facing);
|
||||
if(tank != null){
|
||||
return (T)tank;
|
||||
|
|
Loading…
Reference in a new issue