github.com/df-mc/dragonfly@v0.9.13/server/item/iron_nugget.go (about) 1 package item 2 3 // IronNugget is a piece of iron that can be obtained by smelting iron tools/weapons or iron/chainmail armor. 4 type IronNugget struct{} 5 6 // EncodeItem ... 7 func (IronNugget) EncodeItem() (name string, meta int16) { 8 return "minecraft:iron_nugget", 0 9 }