Started by
Muzaki
on
Topic category: Help with Minecraft modding (Java Edition)
Ive tried using on entity tick if entity is (sub)type of arrow and is burning do place block at x y z fire
it didnt seem to work, i even tried "if entity is sub(type) of arrow do send chat message to all players "message"" to see if it was detecting the arrow and it didnt seem to be. Is there any way I can get this to work?
You can do this without mods at all, simply by using commands.
/execute at @e[type=arrow,nbt={inGround:1b}] run setblock ~ ~ ~ fire
yes, but i want specifically only flaming arrows to do this. Like arrows from a flame bow
I could be wrong, but I believe you can use an NBT for the arrow's fire the same way you can use the inGround NBT.