Allof offset for Nether Climate Parameters
This commit is contained in:
parent
af8e844348
commit
fb65debd87
1 changed files with 6 additions and 2 deletions
|
@ -138,11 +138,15 @@ public class BCLBiomeBuilder {
|
||||||
return new BCLBiomeBuilder(biomeID);
|
return new BCLBiomeBuilder(biomeID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BCLBiomeBuilder addNetherClimateParamater(float temperature, float humidity) {
|
public BCLBiomeBuilder addNetherClimateParamater(float temperature, float humidity, float offset) {
|
||||||
parameters.add(Climate.parameters(temperature, humidity, 0, 0, 0, 0, 0));
|
parameters.add(Climate.parameters(temperature, humidity, 0, 0, 0, 0, offset));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BCLBiomeBuilder addNetherClimateParamater(float temperature, float humidity) {
|
||||||
|
return addNetherClimateParamater(temperature, humidity, 0);
|
||||||
|
}
|
||||||
|
|
||||||
public BCLBiomeBuilder parentBiome(BCLBiome parent) {
|
public BCLBiomeBuilder parentBiome(BCLBiome parent) {
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue