Hi, everyone!
I'm writing a little mod which adds blocks of different shape to minecaft. Each block has a TileEntity, which stores its type and texture index. When I place such blocks, they look fine and work as they are supposed to. But when I relog to my world, the TileEntityes do not load properly. Through debugging I found out, that they ARE loading (readFormNBT is called), but then block doesn't seem to have it. It also doesn't output any errors neither in console, nor in MFL log. My assumption is that it is loaded on the server side, but not on the client side (because the class constructor is called twice, when readFromNBT is called only once).
I've already tried to google the problem, but found nothing.
What could be causing that and what should I do to fix it?
P.S. Sorry for my bad english=)