The bug
Snow golems don't take damage from splash and lingering water bottles. This is inconsistent with endermen and blazes, which do take damage from splash and lingering water bottles, and, like snow golems, are damaged by rain and water.
Suggested fix
(Based off of Minecraft 1.11, MCP 9.35)
net.minecraft.entity.projectile.EntityPotion.func_190544_c(EntityLivingBase p_190544_0_)
private static boolean func_190544_c(EntityLivingBase p_190544_0_)
{
//added " || p_190544_0_ instanceof EntitySnowman"
return p_190544_0_ instanceof EntityEnderman || p_190544_0_ instanceof EntityBlaze || p_190544_0_ instanceof EntitySnowman;
}
Please do not mark unreleased versions as affected.
You don't have access to them yet.