Fix material typo 2

This commit is contained in:
James Seibel
2024-07-11 22:51:37 -05:00
parent 122ef4dce0
commit 0483edd2f3
3 changed files with 3 additions and 3 deletions
@@ -61,7 +61,7 @@ public enum EDhApiBlockMaterial
}
}
return EDhApiBlockMaterial.UNKOWN;
return EDhApiBlockMaterial.UNKNOWN;
}
}
@@ -99,7 +99,7 @@ public class CubicLodTemplate
switch (EDhApiBlockMaterial.getFromIndex(blockMaterialId))
{
case UNKOWN:
case UNKNOWN:
case AIR: // shouldn't normally be rendered, but just in case
color = ColorUtil.HOT_PINK;
break;
@@ -210,7 +210,7 @@ public class CloudRenderHandler
new DhApiVec3d(minXBlockPos, 0, minZBlockPos),
new DhApiVec3d(maxXBlockPos, CLOUD_BOX_THICKNESS, maxZBlockPos),
color,
EDhApiBlockMaterial.UNKOWN
EDhApiBlockMaterial.UNKNOWN
);
boxList.add(box);
}