Update for the FMLEmbeddedChannel change.
This commit is contained in:
parent
2f13622d37
commit
b31fbe528a
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue