PoeticRainbow / golden-days

Golden Days is a Minecraft resource pack meant to bring back old textures, lighting, names, and sounds from older versions of Minecraft.
184 stars 11 forks source link

Improper Grass Block BlockState File #29

Closed StereoMadnessss closed 2 years ago

StereoMadnessss commented 2 years ago

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

PoeticRainbow commented 2 years ago

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

2022-08-12_15 37 01