Package buildcraft.core.network

Examples of buildcraft.core.network.BuildCraftPacket


    if (sendClientUpdate) {
      sendClientUpdate = false;

      if (worldObj instanceof WorldServer) {
        WorldServer world = (WorldServer) worldObj;
        BuildCraftPacket updatePacket = getBCDescriptionPacket();

        for (Object o : world.playerEntities) {
          EntityPlayerMP player = (EntityPlayerMP) o;

          if (world.getPlayerManager().isPlayerWatchingChunk (player, xCoord >> 4, zCoord >> 4)) {
View Full Code Here

TOP

Related Classes of buildcraft.core.network.BuildCraftPacket

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.