Change the icon for BH sheep to mutton to reduce block glitching

This commit is contained in:
Spencer 2017-12-31 13:34:43 -05:00 committed by Alexander Meech
parent 0c883fab3d
commit 64fc407c4e
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class CreatureForm extends Form
if (_type == EntityType.CHICKEN) {_disguise = new DisguiseChicken(Player); icon = Material.FEATHER;} if (_type == EntityType.CHICKEN) {_disguise = new DisguiseChicken(Player); icon = Material.FEATHER;}
else if (_type == EntityType.COW) {_disguise = new DisguiseCow(Player); icon = Material.LEATHER;} else if (_type == EntityType.COW) {_disguise = new DisguiseCow(Player); icon = Material.LEATHER;}
else if (_type == EntityType.SHEEP) {_disguise = new DisguiseSheep(Player); icon = Material.WOOL;} else if (_type == EntityType.SHEEP) {_disguise = new DisguiseSheep(Player); icon = Material.MUTTON;}
else if (_type == EntityType.PIG) {_disguise = new DisguisePig(Player); icon = Material.PORK;} else if (_type == EntityType.PIG) {_disguise = new DisguisePig(Player); icon = Material.PORK;}
_disguise.setSoundDisguise(new DisguiseCat(Player)); _disguise.setSoundDisguise(new DisguiseCat(Player));