Examples of PacketUpdateAirGrateModule


Examples of pneumaticCraft.common.network.PacketUpdateAirGrateModule

    @Override
    public void keyTyped(char par1, int par2){
        if(textfield.isFocused() && par2 != 1) {
            textfield.textboxKeyTyped(par1, par2);
            ((ModuleAirGrate)module).entityFilter = textfield.getText();
            NetworkHandler.sendToServer(new PacketUpdateAirGrateModule(module, textfield.getText()));
        } else {
            super.keyTyped(par1, par2);
        }
    }
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.