I forgot to make it static

This commit is contained in:
IOcmet 2025-04-01 20:37:23 +03:00 committed by GitHub
parent bfede6d87b
commit 484ff585d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,7 @@ public class ArmorModel extends ItemArmor {
private static final ModelCloak modelCloak = new ModelCloak();
@SideOnly(Side.CLIENT)
private final ResourceLocation[] gogglesBlurs = IntStream.range(0, 6)
private static final ResourceLocation[] gogglesBlurs = IntStream.range(0, 6)
.mapToObj(i -> new ResourceLocation(RefStrings.MODID + ":textures/misc/overlay_goggles_" + i + ".png"))
.toArray(ResourceLocation[]::new);