Improper Grass Block BlockState File
StereoMadnessss opened this issue ยท 1 comments
In the latest version (and has been unpatched for quite a while in golden days), this bug has been a nuisance. As how easily fixable this is, there is no excuse.
However, this is because the pack overwrites the .json file, making it unable to load the snowy variant and as such, uses the normal grass block model.
An easy fix to this mess is to replace the file with this:
(Fixed)
{
"variants": {
"snowy=false": [
{
"model": "minecraft:block/grass_block_snow"
}
],
"snowy=true": {
"model": "minecraft:block/grass_block_snow"
}
}
}
To this:
(Original, Broken)
{
"variants": {
"snowy=false": [
{
"model": "minecraft:block/grass_block"
}
]
}
}