#Use Tags on BlockEvents

5 messages · Page 1 of 1 (latest)

normal ember
#
BlockEvents.rightClicked('#minecraft:candles', event=>
{   
    event.player.tell('yay')    
})

¿is there a syntax to use tags on rightClicked events?
for me 'minecraft:candles' does not work, nor does '#minecraft:candles'

unkempt tuskBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

shrewd kraken
#

no

#
BlockEvents(event => {
  if (!event.block.hasTag('candles')) return
  // stuff
})
normal ember
#

Thanksyou very much