Floor Texture Randomizaton
So, i'm trying to get my Server to pick one of 4 sprites (like it does with Wooden plank floor) when I spawn them in the editor,
here's the code:
<Ground type="0x01" id="Insert Name">
<RandomTexture>
<Texture>
<File>lofiEnvironment2</File>
<Index>0x3b</Index>
</Texture>
<Texture>
<File>lofiEnvironment2</File>
<Index>0x4d</Index>
</Texture>
<Texture>
<File>lofiEnvironment2</File>
<Index>0x4e</Index>
</Texture>
<Texture>
<File>lofiEnvironment2</File>
<Index>0x4f</Index>
</Texture>
</RandomTexture>
</Ground>
However, it doesn't seem to work, I rebuild my solution and the server runs fine, just when I spawn said Texture it's just the exact same, how can I fix this?