Package net.minecraft.network.play.server

Examples of net.minecraft.network.play.server.S02PacketChat


    private static void doPlayer(EntityPlayerMP player, VoteEvent vote)
    {
        if (!ConfigServerVote.msgAll.equals(""))
        {
            player.playerNetServerHandler.sendPacket(new S02PacketChat(OutputHandler.createFromText(FunctionHelper.formatColors(ConfigServerVote.msgAll
                    .replaceAll("%service", vote.serviceName).replaceAll("%player", vote.player)))));
        }

        if (!ConfigServerVote.msgVoter.equals(""))
        {
View Full Code Here

TOP

Related Classes of net.minecraft.network.play.server.S02PacketChat

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.