Skip to content

Commit

Permalink
this should fix the remote requirement properly
Browse files Browse the repository at this point in the history
  • Loading branch information
dries007 committed Nov 11, 2016
1 parent a0e01e9 commit a524b6b
Showing 1 changed file with 1 addition and 7 deletions.
Expand Up @@ -16,7 +16,7 @@
/**
* @author Dries007
*/
@Mod(modid = MineTweakerRecipeMaker.MODID, name = MineTweakerRecipeMaker.NAME)
@Mod(modid = MineTweakerRecipeMaker.MODID, name = MineTweakerRecipeMaker.NAME, acceptableRemoteVersions = "*")
public class MineTweakerRecipeMaker
{
public static final String MODID = "MTRM";
Expand Down Expand Up @@ -48,10 +48,4 @@ public void serverStarting(FMLServerStartingEvent event)
{
event.registerServerCommand(new MTRMCommand());
}

@NetworkCheckHandler
public boolean networkCheckHandler(Map<String, String> map, Side side)
{
return side.isClient() || map.containsKey(MODID);
}
}

0 comments on commit a524b6b

Please sign in to comment.