9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00

Fix ex for fluid height

This commit is contained in:
Daniel Mills
2020-10-22 19:23:05 -04:00
parent 56203c3ee2
commit 06ffe5cd06
2 changed files with 6 additions and 1 deletions

View File

@@ -722,6 +722,11 @@ public abstract class TopographicTerrainProvider extends ParallelTerrainProvider
public int getFluidHeight()
{
if(getDimension() == null)
{
return 63;
}
return getDimension().getFluidHeight();
}