Merge pull request #6352 from starlottemusic/mc1.18/dev

Minor ClipboardCloneable outline renderer oversight
This commit is contained in:
simibubi 2024-07-18 11:36:18 +02:00 committed by GitHub
commit 0f3c2a6167
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);