Fix snow rendering take 2

This commit is contained in:
James Seibel
2023-08-18 18:15:13 -05:00
parent 8b20e1ee6d
commit 2cfef3a84d
2 changed files with 2 additions and 2 deletions
@@ -144,7 +144,7 @@ public class ChunkWrapper implements IChunkWrapper
@Override
public int getSolidHeightMapValue(int xRel, int zRel) { return this.chunk.getOrCreateHeightmapUnprimed(Heightmap.Types.OCEAN_FLOOR).getFirstAvailable(xRel, zRel); }
public int getSolidHeightMapValue(int xRel, int zRel) { return this.chunk.getOrCreateHeightmapUnprimed(Heightmap.Types.WORLD_SURFACE).getFirstAvailable(xRel, zRel); }
@Override
public int getLightBlockingHeightMapValue(int xRel, int zRel) { return this.chunk.getOrCreateHeightmapUnprimed(Heightmap.Types.MOTION_BLOCKING).getFirstAvailable(xRel, zRel); }