rename classes
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package storagecraft.container;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import storagecraft.SCItems;
|
||||
import storagecraft.StorageCraftItems;
|
||||
import storagecraft.container.slot.SlotItemFilter;
|
||||
import storagecraft.tile.TileDrive;
|
||||
|
||||
public class ContainerDrive extends ContainerSC {
|
||||
public class ContainerDrive extends ContainerBase {
|
||||
public ContainerDrive(EntityPlayer player, TileDrive drive) {
|
||||
super(player);
|
||||
|
||||
@@ -15,7 +15,7 @@ public class ContainerDrive extends ContainerSC {
|
||||
int y = 20;
|
||||
|
||||
for (int i = 0; i < 8; ++i) {
|
||||
addSlotToContainer(new SlotItemFilter(drive, i, x, y, SCItems.STORAGE_CELL));
|
||||
addSlotToContainer(new SlotItemFilter(drive, i, x, y, StorageCraftItems.STORAGE_CELL));
|
||||
|
||||
if ((i + 1) % 2 == 0) {
|
||||
x = 71;
|
||||
|
Reference in New Issue
Block a user