Added the Dawn Scribing Tool + Dawn Ritual Stone
Fixed the ISidedInventory nature of the chemistry set Added the Omega Reaction Chamber for initiating the Omega state Experimented with enchantments
This commit is contained in:
parent
60ae47c499
commit
ab8d25db76
23 changed files with 554 additions and 57 deletions
src/main/java/WayofTime/alchemicalWizardry/common/tileEntity
|
@ -189,7 +189,15 @@ public class TEWritingTable extends TileEntity implements IInventory, ISidedInve
|
|||
@Override
|
||||
public boolean isItemValidForSlot(int i, ItemStack itemstack)
|
||||
{
|
||||
return false;
|
||||
switch(i)
|
||||
{
|
||||
case 0:
|
||||
if(itemstack != null)
|
||||
{
|
||||
return itemstack.getItem() instanceof IBloodOrb;
|
||||
}
|
||||
}
|
||||
return i != 6;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -903,6 +911,6 @@ public class TEWritingTable extends TileEntity implements IInventory, ISidedInve
|
|||
@Override
|
||||
public boolean canExtractItem(int slot, ItemStack stack, int side)
|
||||
{
|
||||
return true;
|
||||
return slot == 6;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue