Protocol: LegacyBlockResult
Deprecated synchronous result returned by minecraft.get_block.
class LegacyBlockResult(Protocol)
Related API: Block
Properties
key
@property
def key(self) -> str:
Namespaced block type identifier.
state
@property
def state(self) -> Mapping[str, str]:
Serialized block states keyed by state name.
block
@property
def block(self) -> Block:
Live facade for the same block.
Related API: Block