The-Acronym-Coders / BASE

The Central Repo For The B.A.S.E Project
16 stars 13 forks source link

Poor ores, Ores and Dense Ores (Contenttweaker) generate with Rendering issues #113

Open Ethryan opened 4 years ago

Ethryan commented 4 years ago

Hi, when I use the materialsystem to add ores. Beacon beams, the breaking animation and rain, have issues for me that makes them unuseable, since you are able to see straight through the block during breaking. image

code responsible for the creation of the blocks: for material in oreSampleMaterials { var poorOreData as MaterialPartData = material.registerPart("poor_ore").getData(); poorOreData.addDataValue("drops", oreDrops[material]); poorOreData.addDataValue("variants", "minecraft:stone"); poorOreData.addDataValue("hardness", "5"); poorOreData.addDataValue("harvestTool", "pickaxe"); poorOreData.addDataValue("resistance", "15"); poorOreData.addDataValue("harvestLevel", "1"); }

for material in oreSampleMaterials { var oreData as MaterialPartData = material.registerPart("ore").getData(); oreData.addDataValue("drops", oreDrops[material]); oreData.addDataValue("variants", "minecraft:stone"); oreData.addDataValue("hardness", "5"); oreData.addDataValue("resistance", "15"); oreData.addDataValue("harvestTool", "pickaxe"); oreData.addDataValue("harvestLevel", "1"); }

for material in oreSampleMaterials { var denseOreData as MaterialPartData = material.registerPart("dense_ore").getData(); denseOreData.addDataValue("drops", oreDrops[material]); denseOreData.addDataValue("variants", "minecraft:stone"); denseOreData.addDataValue("hardness", "5"); denseOreData.addDataValue("resistance", "15"); denseOreData.addDataValue("harvestTool", "pickaxe"); denseOreData.addDataValue("harvestLevel", "1"); }

Is there any way to fix this problem? Or is this related to the #111 issue?

Installed Mods and their Versions: base-1.12.2-3.13.0.jar ContentTweaker-1.12.2-4.9.1.jar CraftTweaker2-1.12-4.1.19.jar Hwyla-1.8.26-B41_1.12.2.jar jei_1.12.2-4.15.0.291.jar journeymap-1.12.2-5.5.5.jar WailaHarvestability-mc1.12-1.1.12.jar

tpotancok commented 4 years ago

A simple workaround would be - use materials for everything except the ore and a normal block with weighted drops instead of the broken generated one.