Update for the FMLEmbeddedChannel change.

This commit is contained in:
Lex Manos 2013-12-31 12:48:59 -08:00
parent 2f13622d37
commit b31fbe528a

View file

@ -5,6 +5,7 @@ import io.netty.channel.embedded.EmbeddedChannel;
import java.util.EnumMap;
import net.minecraftforge.common.ForgeModContainer;
import cpw.mods.fml.common.network.FMLEmbeddedChannel;
import cpw.mods.fml.common.network.FMLOutboundHandler;
import cpw.mods.fml.common.network.FMLOutboundHandler.OutboundTarget;
import cpw.mods.fml.common.network.NetworkRegistry;
@ -15,7 +16,7 @@ import cpw.mods.fml.relauncher.SideOnly;
public class ForgeNetworkHandler
{
private static EnumMap<Side, EmbeddedChannel> channelPair;
private static EnumMap<Side, FMLEmbeddedChannel> channelPair;
public static void registerChannel(ForgeModContainer forgeModContainer, Side side)
{