PoeticRainbow/golden-days

Improper Grass Block BlockState File

Closed 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.
2022-08-11_17 53 22

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"
}
]
}
}

Your version is outdated. The grass blockstate file works just fine.

2022-08-12_15 37 01