26ed99fda6
Build and deploy / Build (push) Has been cancelled
Build and deploy / Update Contributors (push) Has been cancelled
Build and deploy / Deploy (push) Has been cancelled
15 lines
342 B
Go
15 lines
342 B
Go
package item
|
|
|
|
// WarpedFungusOnAStick is an item that can be used to control saddled striders.
|
|
type WarpedFungusOnAStick struct{}
|
|
|
|
// MaxCount ...
|
|
func (WarpedFungusOnAStick) MaxCount() int {
|
|
return 1
|
|
}
|
|
|
|
// EncodeItem ...
|
|
func (WarpedFungusOnAStick) EncodeItem() (name string, meta int16) {
|
|
return "minecraft:warped_fungus_on_a_stick", 0
|
|
}
|