fix merge issue?

This commit is contained in:
Pyritie 2026-01-19 23:46:08 +00:00
parent 4ed4f8ac1a
commit 5595cf6899

View file

@ -209,8 +209,12 @@ BlockEvents.rightClicked(event => {
if (rock.polished != null) {
// brick -> smooth
transformBlockWithTool(event, rock.bricks.block, rock.polished.block, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true);
transformBlockWithTool(event, rock.bricks.mossy.block, rock.polished.block, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true);
transformBlockWithTool(event, rock.bricks.cracked.block, rock.polished.block, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true);
if (rock.bricks.mossy != null) {
transformBlockWithTool(event, rock.bricks.mossy.block, rock.polished.block, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true);
}
if (rock.bricks.cracked != null) {
transformBlockWithTool(event, rock.bricks.cracked.block, rock.polished.block, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true);
}
}
}
if (rock.cobble != null && rock.cobble.mossy) {