Package net.minecraft.network.packet

Examples of net.minecraft.network.packet.Packet3Chat


    // This might freeze, if the deadlock was related to the playerlist, so do it in another thread.
    new Thread() {
      @Override
      public void run() {
        MinecraftServer.getServerConfigurationManager(MinecraftServer.getServer())
            .sendPacketToAllPlayers(new Packet3Chat(ChatMessageComponent.createFromText(message)));
      }
    }.start();
  }
View Full Code Here

TOP

Related Classes of net.minecraft.network.packet.Packet3Chat

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.