Allow security hand shakes for monitorables.

This commit is contained in:
AlgorithmX2
2014-04-17 22:33:48 -05:00
parent cb81f34db3
commit a4eb01b191
11 changed files with 75 additions and 15 deletions
+4 -2
View File
@@ -706,9 +706,11 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
}
@Override
public IStorageMonitorable getMonitorable(ForgeDirection side)
public IStorageMonitorable getMonitorable(ForgeDirection side, BaseActionSource src)
{
return this;
if ( Platform.canAccess( gridProxy, src ) )
return this;
return null;
}
public ItemStack getStorageType()