Cuz if it did not work I would have been killed by direwolfs already a few times
The EnderZoo code for the direwolf light level spawn control according to crazypant's github is :
Code:
@Override
protected boolean isValidLightLevel() {
return true;
}
Whereas the endermini's is:
Code:
@Override
protected boolean isValidLightLevel() {
return Config.enderminySpawnInLitAreas ? true : super.isValidLightLevel();
}
Which is really all moot since there is no config code to pull in a direWolfSpawnInLitAreas config option.
So while it might seem to have worked, there is no code basis for it to have worked, but you did inspire me to pull down the code and make the change on my local copy so I don't have to worry about those direwolves.