BiomesOPlenty/common/biomesoplenty/integration/atg/GenModGlacier.java
2013-10-22 17:09:24 +11:00

19 lines
333 B
Java

package biomesoplenty.integration.atg;
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;
}
}