Fixed gear not sending packets and disabled encoder
This commit is contained in:
parent
7d468cb614
commit
8a9ad49d61
4 changed files with 11 additions and 6 deletions
|
@ -116,7 +116,7 @@ public class Electrical
|
|||
// Transport
|
||||
blockEMLevitator = contentRegistry.createTile(BlockLevitator.class, TileLevitator.class);
|
||||
// blockArmbot = contentRegistry.createTile(BlockArmbot.class, TileArmbot.class);
|
||||
blockEncoder = contentRegistry.createTile(BlockEncoder.class, TileEncoder.class);
|
||||
//blockEncoder = contentRegistry.createTile(BlockEncoder.class, TileEncoder.class);
|
||||
itemDisk = contentRegistry.createItem(ItemDisk.class);
|
||||
|
||||
// Generator
|
||||
|
|
|
@ -82,8 +82,13 @@ public class PartGear extends PartMechanical implements IMechanical, IMultiBlock
|
|||
@Override
|
||||
public boolean activate(EntityPlayer player, MovingObjectPosition hit, ItemStack item)
|
||||
{
|
||||
if(!world().isRemote)
|
||||
System.out.println(getNetwork());
|
||||
if (!world().isRemote)
|
||||
{
|
||||
System.out.println(getNetwork());
|
||||
// for(Object obj : connections)
|
||||
// System.out.println(obj);
|
||||
}
|
||||
|
||||
if (BlockAdvanced.isUsableWrench(player, player.getCurrentEquippedItem(), x(), y(), z()))
|
||||
{
|
||||
if (player.isSneaking())
|
||||
|
|
|
@ -23,9 +23,8 @@ public class RenderGear
|
|||
public void renderInventory(Block block, int metadata, int modelID, RenderBlocks renderer)
|
||||
{
|
||||
GL11.glRotatef(90, 1, 0, 0);
|
||||
GL11.glScalef(0.5f, 0.5f, 0.5f);
|
||||
RenderUtility.bind(Reference.BLOCK_TEXTURE_DIRECTORY + "planks_oak.png");
|
||||
MODEL.renderAll();
|
||||
MODEL.renderOnly("SmallGear");
|
||||
}
|
||||
|
||||
public void renderDynamic(PartGear part, double x, double y, double z, float frame)
|
||||
|
|
|
@ -78,7 +78,8 @@ public abstract class PartMechanical extends JCuboidPart implements JNormalOcclu
|
|||
|
||||
ticks++;
|
||||
angle += angularVelocity / 20;
|
||||
|
||||
|
||||
checkClientUpdate();
|
||||
super.update();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue