Thanks, I was trying to make it work, thought I would do something like this.
@EventHandler
public void init(FMLInitializationEvent event)
{
MinecraftForge.EVENT_BUS.register(new MySpawnEventHandler());
EntityRegistry.removeSpawn(EntityZombie.class, EnumCreatureType.MONSTER);
EntityRegistry.removeSpawn(EntitySkeleton.class, EnumCreatureType.MONSTER);
EntityRegistry.removeSpawn(EntitySpider.class, EnumCreatureType.MONSTER);
EntityRegistry.removeSpawn(EntityEnderman.class, EnumCreatureType.MONSTER);
EntityRegistry.removeSpawn(EntitySlime.class, EnumCreatureType.MONSTER);
EntityRegistry.addSpawn(EntityZombie.class, 100, 100, 100, EnumCreatureType.MONSTER);
}
But it doesn't seem to be working and I don't really know what I'm doing wrong to be honest. I thought it made sense to call these methods in the init method since they are static anyway, does that make sense? I'd make a seperate method if it worked of course.