Make bubble columns placeable

This commit is contained in:
ForestOfLight
2025-12-14 14:23:32 -08:00
Unverified
parent 8b5b9ffc19
commit 5b53066c45
3 changed files with 4 additions and 2 deletions
@@ -147,6 +147,8 @@ function tryConvertBannedToValidBlock(structureBlock) {
const blockId = structureBlock.type.id.replace('minecraft:', '');
if (Object.keys(bannedToValidBlockMap).includes(blockId))
return BlockPermutation.resolve(bannedToValidBlockMap[blockId], structureBlock.getAllStates());
if (blockId === "bubble_column" && structureBlock.isWaterlogged)
return BlockPermutation.resolve('minecraft:water');
return structureBlock;
}