From 3cb65a6898afc3c2ef7513caa3a0f8e5cf2b244a Mon Sep 17 00:00:00 2001 From: LegendaryTot Date: Thu, 30 Jun 2022 21:32:55 +0000 Subject: [PATCH] Changed SailBlock.applyDye() access modifier to public. --- .../components/structureMovement/bearing/SailBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/bearing/SailBlock.java b/src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/bearing/SailBlock.java index 9c12af7c0..774a4aee4 100644 --- a/src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/bearing/SailBlock.java +++ b/src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/bearing/SailBlock.java @@ -107,7 +107,7 @@ public class SailBlock extends WrenchableDirectionalBlock { return InteractionResult.PASS; } - protected void applyDye(BlockState state, Level world, BlockPos pos, @Nullable DyeColor color) { + public void applyDye(BlockState state, Level world, BlockPos pos, @Nullable DyeColor color) { BlockState newState = (color == null ? AllBlocks.SAIL_FRAME : AllBlocks.DYED_SAILS.get(color)).getDefaultState(); newState = BlockHelper.copyProperties(state, newState);