Minor ClipboardCloneable outline renderer oversight

This commit is contained in:
Star 2024-04-04 22:25:20 -04:00
parent d66170c8fe
commit d00517282a

View File

@ -58,7 +58,8 @@ public class ClipboardValueSettingsHandler {
if (!smartBE.getAllBehaviours()
.stream()
.anyMatch(b -> b instanceof ClipboardCloneable cc
&& cc.writeToClipboard(new CompoundTag(), target.getDirection())))
&& cc.writeToClipboard(new CompoundTag(), target.getDirection()))
&& !(smartBE instanceof ClipboardCloneable))
return;
VoxelShape shape = blockstate.getShape(mc.level, pos);