mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix ex for fluid height
This commit is contained in:
parent
56203c3ee2
commit
06ffe5cd06
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>bytecode.ninja</groupId>
|
||||
<artifactId>Iris</artifactId>
|
||||
<version>1.0.23</version>
|
||||
<version>1.0.24</version>
|
||||
<name>Iris</name>
|
||||
<properties>
|
||||
<skip.copy>false</skip.copy>
|
||||
|
@ -722,6 +722,11 @@ public abstract class TopographicTerrainProvider extends ParallelTerrainProvider
|
||||
|
||||
public int getFluidHeight()
|
||||
{
|
||||
if(getDimension() == null)
|
||||
{
|
||||
return 63;
|
||||
}
|
||||
|
||||
return getDimension().getFluidHeight();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user