12 lines
175 B
Go
12 lines
175 B
Go
package block
|
|
|
|
type TrappedChest struct {
|
|
Facing string
|
|
Type string
|
|
Waterlogged string
|
|
}
|
|
|
|
func (TrappedChest) ID() string {
|
|
return "minecraft:trapped_chest"
|
|
}
|