()
| 11 | } |
| 12 | |
| 13 | func (b SculkCatalyst) Encode() (string, BlockProperties) { |
| 14 | return "minecraft:sculk_catalyst", BlockProperties{ |
| 15 | "bloom": strconv.FormatBool(b.Bloom), |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func (b SculkCatalyst) New(props BlockProperties) Block { |
| 20 | return SculkCatalyst{ |
nothing calls this directly
no outgoing calls
no test coverage detected