Started by
jadenquinn8
on
Topic category: Help with Minecraft modding (Java Edition)
I want to know how to create a block that is basically TNT, that ONLY explodes if flint and steel is in player’s hand, just like the one from MC.
Topic category: Help with Minecraft modding (Java Edition)
I want to know how to create a block that is basically TNT, that ONLY explodes if flint and steel is in player’s hand, just like the one from MC.
MAIN HAND that is.
Then add to when block rightclicked
if mainhand = flint_and_steel:
explode at x y z.
Done.