I have been modding for years but I have no clue why this block is not showing up ...
The other blocks in the blocks.xml mod folder work and show up but these do not. I copy and pasted them straight from the config blocks file ... all i did was rename them and change "shapes=ALL to shapes='Basic"
I am making a mod that requires me to remove all block shapes except squares and ramps and I cannot change the vanilla shapes:varient helper since it kills all the POIs from loading so I need to make a dummy block that works exactly like the variant helpers but restricts the shapes you can make with them ...
This is what ond of the block entries looks like :
<block name="zolokhanwoodShapes" shapes="Basic">
<property name="DescriptionKey" value="woodGroupDesc"/>
<property name="Material" value="Mwood_shapes"/>
<property name="Shape" value="New"/>
<property name="DisplayType" value="blockHardened"/>
<property name="Texture" value="241"/>
<property name="UiBackgroundTexture" value="241"/>
<property name="FuelValue" value="500"/>
<property name="EconomicValue" value="10"/>
<property name="EconomicBundleSize" value="20"/>
<property class="RepairItems">
<property name="resourceWood" value="3"/>
</property>
<drop event="Harvest" name="resourceWood" count="2" tag="allHarvest,lumberjackHarvest,perkJunkMiner"/>
<drop event="Destroy" count="0"/>
<drop event="Fall" name="terrDestroyedWoodDebris" count="1" prob="0.75" stick_chance="1"/>
<property class="UpgradeBlock">
<property name="ToBlock" value="zolokhancobblestoneShapes"/>
<property name="Item" value="resourceCobblestones"/>
<property name="ItemCount" value="10"/>
<property name="UpgradeHitCount" value="4"/>
</property>
<property name="UpgradeSound" value="place_block_wood"/>
<property name="SoundPickup" value="woodblock_grab"/>
<property name="SoundPlace" value="woodblock_place"/>
<property name="SortOrder1" value="S000"/>
<!-- SortOrder2 is assigned in code to keep all of the shapes in the same order for each material -->
<property name="Group" value="Building,advBuilding"/>
<property name="Tags" value="wood"/>
<property name="FilterTags" value="MC_Shapes"/>
</block>
The blocks above this work using the append path but this one is not showing up in creative and the recipe list is giving an error that this block does not exist. Usually the initilization would give me back errors but it loads block.xml fine and only gives me the error when it loads recipes because it cannot find this block . But the block is there .... i do not get it.
Thank you for anyone who can help with this ...
The other blocks in the blocks.xml mod folder work and show up but these do not. I copy and pasted them straight from the config blocks file ... all i did was rename them and change "shapes=ALL to shapes='Basic"
I am making a mod that requires me to remove all block shapes except squares and ramps and I cannot change the vanilla shapes:varient helper since it kills all the POIs from loading so I need to make a dummy block that works exactly like the variant helpers but restricts the shapes you can make with them ...
This is what ond of the block entries looks like :
<block name="zolokhanwoodShapes" shapes="Basic">
<property name="DescriptionKey" value="woodGroupDesc"/>
<property name="Material" value="Mwood_shapes"/>
<property name="Shape" value="New"/>
<property name="DisplayType" value="blockHardened"/>
<property name="Texture" value="241"/>
<property name="UiBackgroundTexture" value="241"/>
<property name="FuelValue" value="500"/>
<property name="EconomicValue" value="10"/>
<property name="EconomicBundleSize" value="20"/>
<property class="RepairItems">
<property name="resourceWood" value="3"/>
</property>
<drop event="Harvest" name="resourceWood" count="2" tag="allHarvest,lumberjackHarvest,perkJunkMiner"/>
<drop event="Destroy" count="0"/>
<drop event="Fall" name="terrDestroyedWoodDebris" count="1" prob="0.75" stick_chance="1"/>
<property class="UpgradeBlock">
<property name="ToBlock" value="zolokhancobblestoneShapes"/>
<property name="Item" value="resourceCobblestones"/>
<property name="ItemCount" value="10"/>
<property name="UpgradeHitCount" value="4"/>
</property>
<property name="UpgradeSound" value="place_block_wood"/>
<property name="SoundPickup" value="woodblock_grab"/>
<property name="SoundPlace" value="woodblock_place"/>
<property name="SortOrder1" value="S000"/>
<!-- SortOrder2 is assigned in code to keep all of the shapes in the same order for each material -->
<property name="Group" value="Building,advBuilding"/>
<property name="Tags" value="wood"/>
<property name="FilterTags" value="MC_Shapes"/>
</block>
The blocks above this work using the append path but this one is not showing up in creative and the recipe list is giving an error that this block does not exist. Usually the initilization would give me back errors but it loads block.xml fine and only gives me the error when it loads recipes because it cannot find this block . But the block is there .... i do not get it.
Thank you for anyone who can help with this ...