BiomesOPlenty/common/biomesoplenty/integration/atg/GenModGlacier.java

20 lines
333 B
Java
Raw Normal View History

2013-10-22 06:09:24 +00:00
package biomesoplenty.integration.atg;
2013-10-21 18:05:20 +00:00
import java.util.Random;
import ttftcuts.atg.api.IGenMod;
public class GenModGlacier implements IGenMod {
@Override
public int modify(int height, Random random, double rawHeight) {
return height + 3;
}
@Override
public double noiseFactor() {
return 1.0;
}
}