github.com/df-mc/dragonfly@v0.9.13/server/item/feather.go (about) 1 package item 2 3 // Feather are items dropped by chickens and parrots, as well as tamed cats as morning gifts. 4 type Feather struct{} 5 6 // EncodeItem ... 7 func (Feather) EncodeItem() (name string, meta int16) { 8 return "minecraft:feather", 0 9 }