Small def fix
This commit is contained in:
parent
4230fb7e6c
commit
4ff79c2b60
1 changed files with 10 additions and 12 deletions
|
@ -89,12 +89,11 @@ public class BCLBiomeDef {
|
|||
* @param id
|
||||
* @return {@link BCLBiomeDef}.
|
||||
*/
|
||||
public static BCLBiomeDef netherBiome(ResourceLocation id) {
|
||||
BCLBiomeDef def = new BCLBiomeDef(id);
|
||||
def.foliageColor = DEF_FOLIAGE_NETHER;
|
||||
def.grassColor = DEF_FOLIAGE_NETHER;
|
||||
def.setCategory(BiomeCategory.NETHER);
|
||||
return def;
|
||||
public BCLBiomeDef netherBiome() {
|
||||
this.foliageColor = DEF_FOLIAGE_NETHER;
|
||||
this.grassColor = DEF_FOLIAGE_NETHER;
|
||||
this.setCategory(BiomeCategory.NETHER);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -102,12 +101,11 @@ public class BCLBiomeDef {
|
|||
* @param id
|
||||
* @return {@link BCLBiomeDef}.
|
||||
*/
|
||||
public static BCLBiomeDef endBiome(ResourceLocation id) {
|
||||
BCLBiomeDef def = new BCLBiomeDef(id);
|
||||
def.foliageColor = DEF_FOLIAGE_END;
|
||||
def.grassColor = DEF_FOLIAGE_END;
|
||||
def.setCategory(BiomeCategory.THEEND);
|
||||
return def;
|
||||
public BCLBiomeDef endBiome() {
|
||||
this.foliageColor = DEF_FOLIAGE_END;
|
||||
this.grassColor = DEF_FOLIAGE_END;
|
||||
this.setCategory(BiomeCategory.THEEND);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue