()
| 9 | } |
| 10 | |
| 11 | func (b HeavyCore) Encode() (string, BlockProperties) { |
| 12 | return "minecraft:heavy_core", BlockProperties{ |
| 13 | "waterlogged": strconv.FormatBool(b.Waterlogged), |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func (b HeavyCore) New(props BlockProperties) Block { |
| 18 | return HeavyCore{ |
nothing calls this directly
no outgoing calls
no test coverage detected