Updated to FML 141, should fix ticking issues with certian mods, and crash issue with TropiCraft

This commit is contained in:
LexManos 2012-06-19 20:46:28 -07:00
parent 52647e0607
commit 09762da617
3 changed files with 4 additions and 4 deletions

View File

@ -320,7 +320,7 @@
}
@@ -4449,4 +4463,39 @@
{
return this.worldInfo.getTerrainType() == WorldType.FLAT ? 0.0D : 63.0D;
return this.worldInfo.getTerrainType().getHorizon(this);
}
+
+

View File

@ -8,7 +8,7 @@
public abstract class WorldProvider
{
/** world object being used */
@@ -124,7 +126,7 @@
@@ -117,7 +119,7 @@
public static WorldProvider getProviderForDimension(int par0)
{
@ -17,9 +17,9 @@
}
/**
@@ -139,4 +141,36 @@
@@ -132,4 +134,36 @@
{
return this.terrainType == WorldType.FLAT ? 4 : 64;
return this.terrainType.getMinimumSpawnHeight(worldObj);
}
+
+ /**