diff --git a/CraftBukkit-Patches/0009-Implement-lightening-of-NibbleArrays-only-allocate-b.patch b/CraftBukkit-Patches/0009-Implement-lightening-of-NibbleArrays-only-allocate-b.patch index ecc9c96..3601881 100644 --- a/CraftBukkit-Patches/0009-Implement-lightening-of-NibbleArrays-only-allocate-b.patch +++ b/CraftBukkit-Patches/0009-Implement-lightening-of-NibbleArrays-only-allocate-b.patch @@ -327,7 +327,7 @@ index 79c3893..97b7b5b 100644 + if (tval != 0) { + tval = tval << 8; + for (int j = 0; j < 4096; j++) { -+ blockids[j << 1] |= tval; ++ blockids[j] |= tval; + } + } + } else {