MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / Encode

Method Encode

server/world/block/oakButton.go:13–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11}
12
13func (b OakButton) Encode() (string, BlockProperties) {
14 return "minecraft:oak_button", BlockProperties{
15 "facing": b.Facing,
16 "powered": strconv.FormatBool(b.Powered),
17 "face": b.Face,
18 }
19}
20
21func (b OakButton) New(props BlockProperties) Block {
22 return OakButton{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected