Package forestry.core.network

Examples of forestry.core.network.PacketCoordinates.readData()


        break;

      // SERVER
      case PacketIds.PROP_REQUEST_FILTER_SET:
        PacketCoordinates packetC = new PacketCoordinates();
        packetC.readData(data);
        onRequestFilterSet(player, packetC);
        break;
      case PacketIds.PROP_SEND_FILTER_CHANGE_TYPE:
        packetU = new PacketUpdate();
        packetU.readData(data);
View Full Code Here


    try {

      switch (packetID) {
      case PacketIds.HABITAT_BIOME_POINTER:
        PacketCoordinates packetC = new PacketCoordinates();
        packetC.readData(data);
        Proxies.common.setBiomefinderCoordinates(player, packetC.getCoordinates());
        break;
      case PacketIds.IMPRINT_SELECTION_GET:
        onImprintSelectionGet(player);
        break;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.