diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java index e1dc512..8191d88 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/DominationWitchEntity.java @@ -31,7 +31,7 @@ public class DominationWitchEntity extends _SpecialWitchEntity { @SpecialMob.BestiaryInfoSupplier public static void getBestiaryInfo( BestiaryInfo.Builder bestiaryInfo ) { bestiaryInfo.color( 0xFFF87E ).weight( BestiaryInfo.DefaultWeight.LOW ) - .uniqueTextureWithEyes() + .uniqueTextureBaseOnly() .addExperience( 2 ) .multiplyAttribute( Attributes.MOVEMENT_SPEED, 0.8 ); } diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/WildsWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/WildsWitchEntity.java index 7cbf5b2..4f87bb3 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/WildsWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/WildsWitchEntity.java @@ -36,7 +36,7 @@ public class WildsWitchEntity extends _SpecialWitchEntity { @SpecialMob.BestiaryInfoSupplier public static void getBestiaryInfo( BestiaryInfo.Builder bestiaryInfo ) { bestiaryInfo.color( 0xA80E0E ).theme( BestiaryInfo.Theme.FOREST ) - .uniqueTextureBaseOnly() + .uniqueTextureWithEyes() .addExperience( 1 ).spider() .multiplyAttribute( Attributes.MOVEMENT_SPEED, 0.7 ); } diff --git a/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java index db419c0..d8a6b30 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/witch/WindWitchEntity.java @@ -41,7 +41,7 @@ public class WindWitchEntity extends _SpecialWitchEntity { @SpecialMob.BestiaryInfoSupplier public static void getBestiaryInfo( BestiaryInfo.Builder bestiaryInfo ) { bestiaryInfo.color( 0x6388B2 ).theme( BestiaryInfo.Theme.MOUNTAIN ) - .uniqueTextureWithEyes() + .uniqueTextureBaseOnly() .addExperience( 2 ).fallImmune() .multiplyAttribute( Attributes.MOVEMENT_SPEED, 1.2 ); } diff --git a/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png b/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png deleted file mode 100644 index d5438ae..0000000 Binary files a/src/main/resources/assets/specialmobs/textures/entity/witch/domination_eyes.png and /dev/null differ