Change to the adaptive chameleon circuit
Batman2741 opened this issue ยท 9 comments
Describe the feature request
Make it so the pine tree exterior is used in snow biomes by default on adaptive biome
Describe alternatives you've considered
Just keeping it the same
Build 2512
Edit adaptive.yml to set the preset for each biome
The file uses YAML aliases - for example:
SNOWY_TAIGA: &snowy COLD_TAIGA
SNOWY_SLOPES: *snowy
&snowy
defines an alias to theCOLD_TAIGA
preset*snowy
is an instance of the alias
You can either change the alias &snowy
to another Chameleon preset e.g. &snowy PINE
, and the other instances will use that as well, or set a preset for each individual biome.
You can only use an &
alias if it has been defined in the file above where you want to use the *
instance - so to change every snowy biome you would need to set the alias up in the # frozen biomes
section first.