Started by
renamamiya
on
Topic category: Help with Minecraft modding (Java Edition)
I'm trying to make a block disappear like the ice frost walker makes, is there any way to make a block like this?
I am modding version 1.20.1
Topic category: Help with Minecraft modding (Java Edition)
I'm trying to make a block disappear like the ice frost walker makes, is there any way to make a block like this?
I am modding version 1.20.1
you would need a clock to check how long the block has been placed and then delete the block
Give the block a tick rate so it ticks once per second, enable nbt block data for the block, then on update tick make that nbt go up by nbt value + 1 and when it reaches 10, break the block.