Package org.spoutcraft.client.packet

Examples of org.spoutcraft.client.packet.PacketCustomBlockChunkOverride


      throw new IOException("Bad compressed data format");
    } finally {
      var4.end();
    }

    SpoutClient.getInstance().getPacketManager().sendSpoutPacket(new PacketCustomBlockChunkOverride(xCh, zCh));
    // Spout End
  }
View Full Code Here


  public void doPreChunk(int par1, int par2, boolean par3) {
    if (par3) {
      this.clientChunkProvider.loadChunk(par1, par2);
      // Spout Start
      SpoutClient.getInstance().getPacketManager().sendSpoutPacket(new PacketCustomBlockChunkOverride(par1, par2));
      // Spout End
    } else {
      this.clientChunkProvider.unloadChunk(par1, par2);
    }
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.packet.PacketCustomBlockChunkOverride

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.