Posted August 7, 20196 yr So, I made this structure that when assembled by the player it performs a continuous action. First I would just check for its existence every tick or once every tick, but i still tought it was a shitty solution, so I just added a TileEntity to every Block that was a part of the structure with world.addTileEntity() and use the remove() method of these "structural tile entities" as a way to refer to the "central" TileEntity and remove it. But I found that I could only register TileEntityTypes assigned to a block, which i wouldn't want to do, even though it wouldn't actually be assigned to the block in the sense that when adding the block to the world it would never create a tile entity unless I explicit tell it to do so on the Block class, so registering it with a block seems strange. Is there any way to register a TileEntity without beeing assigned to a Block? Or it just doesn't matter? Or, I can just create a dummy block????? All this is based on my understanding of what i saw in the code and that is that I can add any TileEntity to the world to any Block, but if the TileEntity isn't registered it won't add it. Generally, Is there any way to make an on demand one for all TileEntity?
August 8, 20196 yr 5 hours ago, Afroman said: Is there any way to make an on demand one for all TileEntity? You would have to give it a set of all Blocks. TileEntities can have more than one block. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.