zmatez / wildnature

A Wilder Experience
https://wildnaturemod.com
Apache License 2.0
7 stars 3 forks source link

Wood Slab models error 2.1.7 #84

Open Areolata7 opened 4 years ago

Areolata7 commented 4 years ago

I do not see that others reported this so I wanted to point it out.

In 2.1.7 all of the WOOD slab models (slab.json and slab_top.json) have a double-slash typo in them so they do not direct to the correct textures. I noticed this some time ago with Ebony slabs but only tried to fix it today. I viewed the model file and saw this:

{ "parent": "block/slab", "textures": { "bottom": "wildnature:blocks//ebony/ebony_planks", "top": "wildnature:blocks//ebony/ebony_planks", "side": "wildnature:blocks//ebony/ebony_planks" } }

When I corrected it to the following the texture was corrected in game.

{ "parent": "block/slab", "textures": { "bottom": "wildnature:blocks/ebony/ebony_planks", "top": "wildnature:blocks/ebony/ebony_planks", "side": "wildnature:blocks/ebony/ebony_planks" } }

I randomly checked some and did not see this double-slash error with stone slab models.

Areolata7 commented 4 years ago

I should also mention that vertical_slab, corner_slab and parquet_slab files are not affected.