Massive rework of configs, items and blocks.

I redone where the items/blocsks are stored and how the configs are
handled to clean up it and give space. You can change the config line to
AWWayofTime if you want to keep the compatibility with old configs. Now
you reference the blocks from the ModBlocks and Items from the ModItems.
This commit is contained in:
Fenn 2014-01-17 21:05:38 +00:00
parent 8601e9faff
commit e3644f2d2b
304 changed files with 3941 additions and 5108 deletions

View file

@ -7,8 +7,7 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerAltar extends Container
{
public class ContainerAltar extends Container {
protected TEAltar tileEntity;
public ContainerAltar(InventoryPlayer inventoryPlayer, TEAltar te)
@ -25,6 +24,7 @@ public class ContainerAltar extends Container
bindPlayerInventory(inventoryPlayer);
}
@Override
public boolean canInteractWith(EntityPlayer entityplayer)
{
@ -38,7 +38,7 @@ public class ContainerAltar extends Container
for (int j = 0; j < 9; j++)
{
addSlotToContainer(new Slot(inventoryPlayer, j + i * 9 + 9,
8 + j * 18, 84 + i * 18));
8 + j * 18, 84 + i * 18));
}
}
@ -47,6 +47,7 @@ public class ContainerAltar extends Container
addSlotToContainer(new Slot(inventoryPlayer, i, 8 + i * 18, 142));
}
}
@Override
public ItemStack transferStackInSlot(EntityPlayer player, int slot)
{
@ -76,8 +77,7 @@ public class ContainerAltar extends Container
if (stackInSlot.stackSize == 0)
{
slotObject.putStack(null);
}
else
} else
{
slotObject.onSlotChanged();
}

View file

@ -7,8 +7,7 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerTeleposer extends Container
{
public class ContainerTeleposer extends Container {
protected TETeleposer tileEntity;
public ContainerTeleposer(InventoryPlayer inventoryPlayer, TETeleposer te)
@ -88,8 +87,7 @@ public class ContainerTeleposer extends Container
if (stackInSlot.stackSize == 0)
{
slotObject.putStack(null);
}
else
} else
{
slotObject.onSlotChanged();
}

View file

@ -7,8 +7,7 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerWritingTable extends Container
{
public class ContainerWritingTable extends Container {
protected TEWritingTable tileEntity;
public ContainerWritingTable(InventoryPlayer inventoryPlayer, TEWritingTable te)
@ -88,8 +87,7 @@ public class ContainerWritingTable extends Container
if (stackInSlot.stackSize == 0)
{
slotObject.putStack(null);
}
else
} else
{
slotObject.onSlotChanged();
}