2013-10-22 06:08:57 +00:00
|
|
|
package biomesoplenty.integration.tatg;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|