Package mods.railcraft.common.util.network

Examples of mods.railcraft.common.util.network.PacketGuiReturn


    @Override
    public void onGuiClosed() {
        if (Game.isNotHost(tile.getWorld())) {
            tile.ticksToPower = ticksToPower;
            PacketGuiReturn pkt = new PacketGuiReturn(tile);
            PacketDispatcher.sendToServer(pkt);
        }
    }
View Full Code Here


    @Override
    public void onGuiClosed()
    {
        track.setLaunchForce(force);
        if(Game.isNotHost(track.getWorld())) {
            PacketGuiReturn pkt = new PacketGuiReturn((IGuiReturnHandler)track.tileEntity);
            pkt.sendPacket();
        }
    }
View Full Code Here

    @Override
    public void onGuiClosed() {
        track.setFuse(fuse);
        if (Game.isNotHost(track.getWorld())) {
            PacketGuiReturn pkt = new PacketGuiReturn((IGuiReturnHandler) track.tileEntity);
            PacketDispatcher.sendToServer(pkt);
        }
    }
View Full Code Here

TOP

Related Classes of mods.railcraft.common.util.network.PacketGuiReturn

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.