Package org.getspout.spoutapi.packet

Examples of org.getspout.spoutapi.packet.PacketCustomBlockOverride


            }
          }
        }
      } else {
        for (int i = 0; i < xCoords.size(); i++) {
          SpoutPacket packet = new PacketCustomBlockOverride(xCoords.get(i), yCoords.get(i), zCoords.get(i), typeIds.get(i), data.get(i));
          for (Player player : players) {
            if (player instanceof SpoutCraftPlayer) {
              SpoutCraftPlayer spc = (SpoutCraftPlayer) player;
              if (spc.isSpoutCraftEnabled()) {
                spc.sendPacket(packet);
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.packet.PacketCustomBlockOverride

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.