github.com/df-mc/dragonfly@v0.9.13/server/item/glowstone_dust.go (about)

     1  package item
     2  
     3  // GlowstoneDust is dropped when breaking the glowstone block.
     4  type GlowstoneDust struct{}
     5  
     6  // EncodeItem ...
     7  func (g GlowstoneDust) EncodeItem() (name string, meta int16) {
     8  	return "minecraft:glowstone_dust", 0
     9  }