BiomesOPlenty/apis/ttftcuts/atg/api/ATGAPI.java

12 lines
217 B
Java
Raw Normal View History

2013-10-21 18:05:20 +00:00
package ttftcuts.atg.api;
import net.minecraft.world.World;
public class ATGAPI {
public static boolean WorldIsATG(World world) {
return world.provider.terrainType.getWorldTypeName() == "ATG";
}
}