I'd need the support for Block::isSolid for my extension. I can never seem to make it work. I updated by dependencies to :
"@minecraft/server": "^1.14.0-beta.1.21.20-preview.22",
"@minecraft/server-admin": "^1.0.0-beta.1.21.20-preview.22",
"@minecraft/server-gametest": "^1.0.0-beta.1.21.20-preview.22",
"@minecraft/server-net": "^1.0.0-beta.1.21.20-preview.22",
"@minecraft/server-ui": "^1.3.0-beta.1.21.20-preview.22"
I also switched from stable to preview in the minecraft launcher. My code is rebuilt but I keep getting undefined when I access isSolid. For example, i'm trying to output the block's solidity to work with it but I keep getting this:
`Nearest input block is ${nearestInputBlock.x}, ${nearestInputBlock.y}, ${nearestInputBlock.z} with solidity ${nearestInputBlock.isSolid}`
outputs: Nearest input block is -6, 64, -91 with solidity undefined