• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

[MultiBlockManager][Alignment] SetTerrainAlignmentDirty failed

Xarion

Refugee
I think all players have seen this yellow warning message in the console:

WRN [MultiBlockManager][Alignment] SetTerrainAlignmentDirty failed; no terrain-aligned block has been registered at the specified world position: x, y, z

My question is this issue can be safely ignored or should be considered as a bug? And maybe it can be fixed by a modlet?

I found out what is causing this warning. The vanilla vehicle blocks used as biome decorations have property
<property name="TerrainAlignment" value="Vehicle"/>
to align with terrain.
Quite often by somewhat reason there is something wrong with this alignment and that yellow warning is popping out. If I remove 'TerrainAlignment = Vehicle' then vehicles will be placed always horizontally and that's not always look good. If I replace it with another alignment method,
<property name="GndAlign" value="1"/>
then some wrecked cars will be placed half underground and that's not look good too. I tried to change property 'ModelOffset' but seems like it has no effect on those vehicle models.
With 'GndAlign' or without terrain alignment at all, there are completely no those yellow warning messages in the console.
 
I think all players have seen this yellow warning message in the console:

WRN [MultiBlockManager][Alignment] SetTerrainAlignmentDirty failed; no terrain-aligned block has been registered at the specified world position: x, y, z

My question is this issue can be safely ignored or should be considered as a bug? And maybe it can be fixed by a modlet?

I found out what is causing this warning. The vanilla vehicle blocks used as biome decorations have property
<property name="TerrainAlignment" value="Vehicle"/>
to align with terrain.
Quite often by somewhat reason there is something wrong with this alignment and that yellow warning is popping out. If I remove 'TerrainAlignment = Vehicle' then vehicles will be placed always horizontally and that's not always look good. If I replace it with another alignment method,
<property name="GndAlign" value="1"/>
then some wrecked cars will be placed half underground and that's not look good too. I tried to change property 'ModelOffset' but seems like it has no effect on those vehicle models.
With 'GndAlign' or without terrain alignment at all, there are completely no those yellow warning messages in the console.
that can be safely ignored it does not cause any issues at all
 
Back
Top