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

Method Encode

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected