fix merge issue?
This commit is contained in:
parent
4ed4f8ac1a
commit
5595cf6899
1 changed files with 6 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue