github.com/df-mc/dragonfly@v0.9.13/server/item/disc_fragment.go (about) 1 package item 2 3 // DiscFragment is a music disc fragment obtained from ancient city loot chests. They are extremely rare to find and 4 // nine of them in a crafting table makes a music disc named, "5". 5 type DiscFragment struct{} 6 7 // EncodeItem ... 8 func (DiscFragment) EncodeItem() (name string, meta int16) { 9 return "minecraft:disc_fragment_5", 0 10 }