Minor work in attempt to fix TileMechanicalPiston
This commit is contained in:
parent
3a20055199
commit
9334fd1370
3 changed files with 4 additions and 5 deletions
|
@ -157,14 +157,14 @@ public class NodeTank extends NodeConnector implements IFluidTank, IFluidHandler
|
||||||
|
|
||||||
public void sendTank()
|
public void sendTank()
|
||||||
{
|
{
|
||||||
ResonantEngine.instance.packetHandler.sendToAllAround(new PacketTile((int)x(), (int)y(), (int)z(), tank.writeToNBT(new NBTTagCompound())), this, 64);
|
ResonantEngine.instance.packetHandler.sendToAllAround(new PacketTile((int)x(), (int)y(), (int)z(), PACKET_TANK, tank.writeToNBT(new NBTTagCompound())), this, 64);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendUpdate()
|
public void sendUpdate()
|
||||||
{
|
{
|
||||||
NBTTagCompound tag = new NBTTagCompound();
|
NBTTagCompound tag = new NBTTagCompound();
|
||||||
save(tag);
|
save(tag);
|
||||||
ResonantEngine.instance.packetHandler.sendToAllAround(new PacketTile((int)x(), (int)y(), (int)z(), tag), this, 64);
|
ResonantEngine.instance.packetHandler.sendToAllAround(new PacketTile((int)x(), (int)y(), (int)z(), PACKET_DESCRIPTION, tag), this, 64);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraftforge.common.util.ForgeDirection
|
||||||
import net.minecraftforge.fluids._
|
import net.minecraftforge.fluids._
|
||||||
import resonant.content.prefab.java.TileAdvanced
|
import resonant.content.prefab.java.TileAdvanced
|
||||||
import resonant.lib.network.discriminator.{PacketTile, PacketType}
|
import resonant.lib.network.discriminator.{PacketTile, PacketType}
|
||||||
import resonant.lib.network.handle.{IPacketIDReceiver, TPacketIDSender}
|
import resonant.lib.network.handle.IPacketIDReceiver
|
||||||
import universalelectricity.api.core.grid.{INode, INodeProvider}
|
import universalelectricity.api.core.grid.{INode, INodeProvider}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,7 +17,7 @@ import universalelectricity.api.core.grid.{INode, INodeProvider}
|
||||||
*
|
*
|
||||||
* @author DarkGuardsman
|
* @author DarkGuardsman
|
||||||
*/
|
*/
|
||||||
class TileTankNode(material: Material) extends TileAdvanced(material) with INodeProvider with IFluidHandler with IPacketIDReceiver with TPacketIDSender
|
class TileTankNode(material: Material) extends TileAdvanced(material) with INodeProvider with IFluidHandler with IPacketIDReceiver
|
||||||
{
|
{
|
||||||
val PACKET_DESCRIPTION = 0
|
val PACKET_DESCRIPTION = 0
|
||||||
val PACKET_RENDER = 1
|
val PACKET_RENDER = 1
|
||||||
|
|
|
@ -36,7 +36,6 @@ public class TileMechanicalPiston extends TileMechanical
|
||||||
|
|
||||||
mechanicalNode = new MechanicalNode(this)
|
mechanicalNode = new MechanicalNode(this)
|
||||||
{
|
{
|
||||||
public void onUpdate() { super.onUpdate(); System.out.println("MechPistonTick");}
|
|
||||||
@Override
|
@Override
|
||||||
protected void revolve()
|
protected void revolve()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue