Files

10 lines
228 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
// GlowstoneDust is dropped when breaking the glowstone block.
type GlowstoneDust struct{}
// EncodeItem ...
func (g GlowstoneDust) EncodeItem() (name string, meta int16) {
return "minecraft:glowstone_dust", 0
}