mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Fixed villagers having too many saddlebags
This commit is contained in:
parent
b4b98ccfe6
commit
ee0aca3967
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ abstract class AbstractNpcRenderer<T extends MobEntity & VillagerDataContainer>
|
||||||
|
|
||||||
boolean special = PonyTextures.isBestPony(entity);
|
boolean special = PonyTextures.isBestPony(entity);
|
||||||
|
|
||||||
if (wearable.isSaddlebags()) {
|
if (wearable == Wearable.SADDLE_BAGS_BOTH) {
|
||||||
VillagerProfession profession = entity.getVillagerData().getProfession();
|
VillagerProfession profession = entity.getVillagerData().getProfession();
|
||||||
return !special && profession != VillagerProfession.NONE && (
|
return !special && profession != VillagerProfession.NONE && (
|
||||||
profession == VillagerProfession.CARTOGRAPHER
|
profession == VillagerProfession.CARTOGRAPHER
|
||||||
|
|
Loading…
Reference in a new issue