Inspired by 2020's April Fools' 20w14infinite Snapshot, this mod brings endless randomly generated dimensions into Minecraft.

fix altar models

Lera 484891f4 d1a6fdf4

+3 -2
+1
CHANGELOG-LATEST.md
··· 17 17 ### Fixes 18 18 - Random dimensions can once again use fluids other than water for their generation. 19 19 - Music discs on 1.21.8 are now correctly tinted and actually play. 20 + - Models of altar items are fixed in 1.21.8. 20 21 - Corals no longer crash world generation. (Cass) 21 22 - Custom packets are correctly registered on the client. (Cass, 1.21.1 Neoforge) 22 23 - The 11th amendment was changed to blacklist bumblezone biomes instead of structures.
+1 -1
src/main/java/net/lerariemann/infinity/block/entity/CosmicAltarBlockEntity.java
··· 218 218 219 219 @Override 220 220 public int getListenerRadius() { 221 - return 8; 221 + return 6; 222 222 } 223 223 224 224 @Override
+1 -1
src/main/java/net/lerariemann/infinity/util/VersionMethods.java
··· 406 406 } 407 407 408 408 static CustomModelData getColoredModel(int color) { 409 - return new CustomModelData(List.of(), List.of(), List.of(), List.of(color)); 409 + return new CustomModelData(List.of(), List.of(), List.of(String.valueOf(color)), List.of()); 410 410 } 411 411 412 412 static <T> T getFromRegistry(Registry<T> registry, ResourceLocation name) {