Files
mc/server/item/feather.go
T

10 lines
238 B
Go
Raw Normal View History

2026-07-09 08:33:57 +08:00
package item
// Feather are items dropped by chickens and parrots, as well as tamed cats as morning gifts.
type Feather struct{}
// EncodeItem ...
func (Feather) EncodeItem() (name string, meta int16) {
return "minecraft:feather", 0
}