diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b13c3553..616e903b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * Added the ability to change the farmers work area with a compass. * Make blocks still drop items even when broken incorrectly. * Add AIOT to the necessary tool related item tags (swords, pickaxes, axes, shovels) +* Fix the Engineer Goggles not rendering correctly # 1.3.10+mc1.21.1 * Fixed Fluid placer not being harvestable. diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/material/ArmorMaterials.java b/src/main/java/de/ellpeck/actuallyadditions/mod/material/ArmorMaterials.java index 1d81b594a..b0dca9c0e 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/material/ArmorMaterials.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/material/ArmorMaterials.java @@ -46,8 +46,7 @@ public class ArmorMaterials { SoundEvents.ARMOR_EQUIP_GENERIC, () -> Ingredient.EMPTY, List.of( - new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "", true), - new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "_overlay", false) + new ArmorMaterial.Layer(ActuallyAdditions.modLoc("goggles"), "", true) ), 0.0F, 0.0F diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_armor_material_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_armor_material_layer_2.png deleted file mode 100644 index 7ac1e1f0c..000000000 Binary files a/src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_armor_material_layer_2.png and /dev/null differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_armor_material_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_layer_1.png similarity index 100% rename from src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_armor_material_layer_1.png rename to src/main/resources/assets/actuallyadditions/textures/models/armor/goggles_layer_1.png