Finished TileEntities

This commit is contained in:
Arcaratus 2015-07-30 10:21:53 -04:00
parent cfed9f5ab3
commit b2f7ec6030
36 changed files with 183 additions and 233 deletions

View file

@ -2,7 +2,7 @@ package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.api.items.interfaces.IBloodOrb;
import WayofTime.alchemicalWizardry.api.items.interfaces.IReagentManipulator;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAlchemicCalcinator;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAlchemicalCalcinator;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
@ -30,7 +30,7 @@ public class BlockAlchemicalCalcinator extends BlockContainer
@Override
public TileEntity createNewTileEntity(World world, int meta)
{
return new TEAlchemicCalcinator();
return new TEAlchemicalCalcinator();
}
@Override
@ -105,7 +105,7 @@ public class BlockAlchemicalCalcinator extends BlockContainer
@Override
public boolean onBlockActivated(World world, BlockPos blockPos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ)
{
TEAlchemicCalcinator tileEntity = (TEAlchemicCalcinator) world.getTileEntity(blockPos);
TEAlchemicalCalcinator tileEntity = (TEAlchemicalCalcinator) world.getTileEntity(blockPos);
if (tileEntity == null || player.isSneaking())
{

View file

@ -21,7 +21,7 @@ import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.ModBlocks;
import WayofTime.alchemicalWizardry.api.alchemy.energy.Reagent;
import WayofTime.alchemicalWizardry.api.alchemy.energy.ReagentContainer;
import WayofTime.alchemicalWizardry.common.tileEntity.TEBellJar;
import WayofTime.alchemicalWizardry.common.tileEntity.TEBelljar;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@ -77,12 +77,12 @@ public class BlockBelljar extends BlockContainer
{
TileEntity tile = world.getTileEntity(blockPos);
if (tile instanceof TEBellJar)
if (tile instanceof TEBelljar)
{
NBTTagCompound tag = stack.getTagCompound();
if (tag != null)
{
((TEBellJar) tile).readTankNBTOnPlace(tag);
((TEBelljar) tile).readTankNBTOnPlace(tag);
}
}
}
@ -90,7 +90,7 @@ public class BlockBelljar extends BlockContainer
@Override
public TileEntity createNewTileEntity(World world, int meta)
{
return new TEBellJar();
return new TEBelljar();
}
@Override
@ -121,9 +121,9 @@ public class BlockBelljar extends BlockContainer
public int getComparatorInputOverride(World world, BlockPos blockPos)
{
TileEntity tile = world.getTileEntity(blockPos);
if (tile instanceof TEBellJar)
if (tile instanceof TEBelljar)
{
return ((TEBellJar) tile).getRSPowerOutput();
return ((TEBelljar) tile).getRSPowerOutput();
}
return 15;
}
@ -142,11 +142,11 @@ public class BlockBelljar extends BlockContainer
TileEntity tile = world.getTileEntity(blockPos);
if (tile instanceof TEBellJar)
if (tile instanceof TEBelljar)
{
ItemStack drop = new ItemStack(this);
NBTTagCompound tag = new NBTTagCompound();
((TEBellJar) tile).writeTankNBT(tag);
((TEBelljar) tile).writeTankNBT(tag);
drop.setTagCompound(tag);
list.add(drop);

View file

@ -1,7 +1,7 @@
package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
import WayofTime.alchemicalWizardry.common.tileEntity.TEChemistrySet;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
@ -92,7 +92,7 @@ public class BlockChemistrySet extends BlockContainer
@Override
public TileEntity createNewTileEntity(World world, int meta)
{
return new TEWritingTable();
return new TEChemistrySet();
}
@Override

View file

@ -35,7 +35,7 @@ public class BlockSchematicSaver extends BlockContainer
TESchematicSaver tileEntity = (TESchematicSaver) world.getTileEntity(blockPos);
tileEntity.rightClickBlock(player, side.getIndex());
tileEntity.rightClickBlock();
return false;
}

View file

@ -1,7 +1,7 @@
package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.items.BlankSpell;
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart;
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellTable;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
@ -25,7 +25,7 @@ public class BlockSpellTable extends BlockContainer
@Override
public boolean onBlockActivated(World world, BlockPos blockPos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ)
{
TEHomHeart tileEntity = (TEHomHeart) world.getTileEntity(blockPos);
TESpellTable tileEntity = (TESpellTable) world.getTileEntity(blockPos);
if (tileEntity == null || player.isSneaking())
{
@ -58,6 +58,6 @@ public class BlockSpellTable extends BlockContainer
@Override
public TileEntity createNewTileEntity(World world, int metaMaybe)
{
return new TEHomHeart();
return new TESpellTable();
}
}