Files

10 lines
233 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
// HeartOfTheSea is a rare item that can be crafted into a conduit.
type HeartOfTheSea struct{}
// EncodeItem ...
func (HeartOfTheSea) EncodeItem() (name string, meta int16) {
return "minecraft:heart_of_the_sea", 0
}