BloodMagic/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TEConduit.java

41 lines
913 B
Java
Raw Normal View History

2014-01-17 19:12:49 +00:00
package WayofTime.alchemicalWizardry.common.tileEntity;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigm;
2014-01-17 19:12:49 +00:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.packet.Packet;
public class TEConduit extends TESpellBlock
2014-01-17 21:43:13 +00:00
{
2014-01-17 19:12:49 +00:00
@Override
public void readFromNBT(NBTTagCompound par1NBTTagCompound)
{
super.readFromNBT(par1NBTTagCompound);
}
@Override
public void writeToNBT(NBTTagCompound par1NBTTagCompound)
{
super.writeToNBT(par1NBTTagCompound);
}
//Logic for the actual block is under here
@Override
public void updateEntity()
{
2014-01-17 19:12:49 +00:00
}
@Override
public Packet getDescriptionPacket()
{
return PacketHandler.getBlockOrientationPacket(this);
}
@Override
protected void applySpellChange(SpellParadigm parad)
{
return;
}
2014-01-17 19:12:49 +00:00
}