github.com/df-mc/dragonfly@v0.9.13/server/item/warped_fungus_on_a_stick.go (about) 1 package item 2 3 // WarpedFungusOnAStick is an item that can be used to control saddled striders. 4 type WarpedFungusOnAStick struct{} 5 6 // MaxCount ... 7 func (WarpedFungusOnAStick) MaxCount() int { 8 return 1 9 } 10 11 // EncodeItem ... 12 func (WarpedFungusOnAStick) EncodeItem() (name string, meta int16) { 13 return "minecraft:warped_fungus_on_a_stick", 0 14 }