From 933793244ca18bdb00b4964534f31dfe27294ac2 Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Fri, 29 Sep 2023 13:20:32 +1000 Subject: [PATCH] [ci skip] Fix typo (important) --- patches/server/MC-Dev-fixes.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/server/MC-Dev-fixes.patch b/patches/server/MC-Dev-fixes.patch index 6859375a03..68423bf9a3 100644 --- a/patches/server/MC-Dev-fixes.patch +++ b/patches/server/MC-Dev-fixes.patch @@ -266,7 +266,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 public static BoundingBox createBoundingBox(Stream pieces) { - Stream stream1 = pieces.map(StructurePiece::getBoundingBox); -+ Stream stream1 = pieces.map(StructurePiece::getBoundingBox); // Paper - decompile fx ++ Stream stream1 = pieces.map(StructurePiece::getBoundingBox); // Paper - decompile fix Objects.requireNonNull(stream1); return (BoundingBox) BoundingBox.encapsulatingBoxes(stream1::iterator).orElseThrow(() -> {