Added hardcoded foliage colors
This commit is contained in:
parent
26c8eb2679
commit
5e6c5f4d06
8 changed files with 40 additions and 0 deletions
|
@ -41,4 +41,9 @@ public class BiomeGenCherryBlossomGrove extends BiomeGenBase
|
|||
{
|
||||
return 10747818;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 10747818;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,6 +55,11 @@ public class BiomeGenDeadForest extends BiomeGenBase
|
|||
{
|
||||
return 12362085;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 12362085;
|
||||
}
|
||||
|
||||
/**
|
||||
* takes temperature, returns color
|
||||
|
|
|
@ -59,6 +59,11 @@ public class BiomeGenDeadSwamp extends BiomeGenBase
|
|||
{
|
||||
return 6713420;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 6713420;
|
||||
}
|
||||
|
||||
/**
|
||||
* takes temperature, returns color
|
||||
|
|
|
@ -76,4 +76,9 @@ public class BiomeGenGrassland extends BiomeGenBase
|
|||
{
|
||||
return 8379261;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 8379261;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -63,4 +63,9 @@ public class BiomeGenMeadow extends BiomeGenBase
|
|||
{
|
||||
return 6533741;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 6533741;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,6 +66,11 @@ public class BiomeGenMoor extends BiomeGenBase
|
|||
{
|
||||
return 6394725;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 6394725;
|
||||
}
|
||||
|
||||
/**
|
||||
* takes temperature, returns color
|
||||
|
|
|
@ -39,4 +39,9 @@ public class BiomeGenOrchard extends BiomeGenBase
|
|||
{
|
||||
return 14024557;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 14024557;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,4 +46,9 @@ public class BiomeGenSteppe extends BiomeGenBase
|
|||
{
|
||||
return 13413215;
|
||||
}
|
||||
|
||||
public int getBiomeFoliageColor()
|
||||
{
|
||||
return 13413215;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue