Makes naming of security station related classes/assets consistent with registry name.

This commit is contained in:
Sebastian Hartte
2016-08-26 01:34:46 +02:00
parent 0df62abebd
commit c0b0687fd3
18 changed files with 45 additions and 48 deletions
@@ -33,16 +33,16 @@ import appeng.api.storage.StorageChannel;
import appeng.api.storage.data.IAEItemStack;
import appeng.api.storage.data.IItemList;
import appeng.me.GridAccessException;
import appeng.tile.misc.TileSecurity;
import appeng.tile.misc.TileStationSecurity;
public class SecurityInventory implements IMEInventoryHandler<IAEItemStack>
public class SecurityStationInventory implements IMEInventoryHandler<IAEItemStack>
{
private final IItemList<IAEItemStack> storedItems = AEApi.instance().storage().createItemList();
private final TileSecurity securityTile;
private final TileStationSecurity securityTile;
public SecurityInventory( final TileSecurity ts )
public SecurityStationInventory( final TileStationSecurity ts )
{
this.securityTile = ts;
}