diff --git a/patches/server/0002-Dev-import-deobfuscation-fixes.patch b/patches/server/0002-Dev-import-deobfuscation-fixes.patch index d3d56f4..db1146b 100644 --- a/patches/server/0002-Dev-import-deobfuscation-fixes.patch +++ b/patches/server/0002-Dev-import-deobfuscation-fixes.patch @@ -366,3 +366,62 @@ index 915c1cbcc0ecf634cc76f02bba53dc82d22be698..0c05aa0d0938b19453f45adf5931c887 } @Override +diff --git a/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java b/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java +index 8d40205f56a7b204a65505f9e1b4e20000221755..a6434f2c2d1ddb33e7c51d0a099fd127d8a785e6 100644 +--- a/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java ++++ b/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java +@@ -113,13 +113,15 @@ public class Blender { + MutableDouble mutableDouble3 = new MutableDouble(Double.POSITIVE_INFINITY); + this.heightAndBiomeBlendingData.forEach((chunkPos, data) -> { + data.iterateHeights(QuartPos.fromSection(ChunkPos.getX(chunkPos)), QuartPos.fromSection(ChunkPos.getZ(chunkPos)), (biomeX, biomeZ, height) -> { +- double d = Mth.length((double)(i - biomeX), (double)(j - biomeZ)); +- if (!(d > (double)HEIGHT_BLENDING_RANGE_CELLS)) { +- if (d < mutableDouble3.doubleValue()) { +- mutableDouble3.setValue(d); ++ // Gale start - dev import deobfuscation fixes ++ double distance = Mth.length((double)(i - biomeX), (double)(j - biomeZ)); ++ if (!(distance > (double)HEIGHT_BLENDING_RANGE_CELLS)) { ++ if (distance < mutableDouble3.doubleValue()) { ++ mutableDouble3.setValue(distance); + } + +- double e = 1.0D / (d * d * d * d); ++ double e = 1.0D / (distance * distance * distance * distance); ++ // Gale end - dev import deobfuscation fixes + mutableDouble2.add(height * e); + mutableDouble.add(e); + } +@@ -156,13 +158,15 @@ public class Blender { + MutableDouble mutableDouble3 = new MutableDouble(Double.POSITIVE_INFINITY); + this.densityBlendingData.forEach((chunkPos, data) -> { + data.iterateDensities(QuartPos.fromSection(ChunkPos.getX(chunkPos)), QuartPos.fromSection(ChunkPos.getZ(chunkPos)), j - 1, j + 1, (biomeX, halfSectionY, biomeZ, collidableBlockDensity) -> { +- double d = Mth.length((double)(i - biomeX), (double)((j - halfSectionY) * 2), (double)(k - biomeZ)); +- if (!(d > 2.0D)) { +- if (d < mutableDouble3.doubleValue()) { +- mutableDouble3.setValue(d); ++ // Gale start - dev import deobfuscation fixes ++ double distance = Mth.length((double)(i - biomeX), (double)((j - halfSectionY) * 2), (double)(k - biomeZ)); ++ if (!(distance > 2.0D)) { ++ if (distance < mutableDouble3.doubleValue()) { ++ mutableDouble3.setValue(distance); + } + +- double e = 1.0D / (d * d * d * d); ++ double e = 1.0D / (distance * distance * distance * distance); ++ // Gale end - dev import deobfuscation fixes + mutableDouble2.add(collidableBlockDensity * e); + mutableDouble.add(e); + } +@@ -317,8 +321,10 @@ public class Blender { + double f = (double)offsetZ + 0.5D + SHIFT_NOISE.getValue((double)offsetZ, (double)offsetX, (double)y) * 4.0D; + return distanceGetter.getDistance(d, e, f) < 4.0D; + }; +- Stream.of(GenerationStep.Carving.values()).map(chunk::getOrCreateCarvingMask).forEach((mask) -> { +- mask.setAdditionalMask(mask); ++ // Gale start - dev import deobfuscation fixes ++ Stream.of(GenerationStep.Carving.values()).map(chunk::getOrCreateCarvingMask).forEach((carvingMask) -> { ++ carvingMask.setAdditionalMask(mask); ++ // Gale end - dev import deobfuscation fixes + }); + } + } diff --git a/patches/server/0008-Gale-semantic-version.patch b/patches/server/0008-Gale-semantic-version.patch index 648d58d..63a370b 100644 --- a/patches/server/0008-Gale-semantic-version.patch +++ b/patches/server/0008-Gale-semantic-version.patch @@ -29,7 +29,7 @@ index 2868dab7b100d9c325b0e5056f86660d631dec4b..2acad4c3fd58178b0f8b22bdb04eeeeb } diff --git a/src/main/java/org/galemc/gale/version/GaleSemanticVersion.java b/src/main/java/org/galemc/gale/version/GaleSemanticVersion.java new file mode 100644 -index 0000000000000000000000000000000000000000..d7a6b62905b897531d18f614292afeea89a7a165 +index 0000000000000000000000000000000000000000..9bee7629dd00453dc4a712f3c48cf4f2ae3da5c5 --- /dev/null +++ b/src/main/java/org/galemc/gale/version/GaleSemanticVersion.java @@ -0,0 +1,37 @@ @@ -57,7 +57,7 @@ index 0000000000000000000000000000000000000000..d7a6b62905b897531d18f614292afeea + * The patch version is incremented for small changes that do not affect the goal of any feature, + * such as bug fixes, performance improvements or changes in wording. + */ -+ public static final @NotNull String version = "0.6.4"; ++ public static final @NotNull String version = "0.6.5"; + + /** + * The "major.minor" portion of the {@link #version}. diff --git a/patches/server/0020-Faster-floating-point-positive-modulo.patch b/patches/server/0020-Faster-floating-point-positive-modulo.patch new file mode 100644 index 0000000..ff51b28 --- /dev/null +++ b/patches/server/0020-Faster-floating-point-positive-modulo.patch @@ -0,0 +1,54 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Martijn Muijsers +Date: Tue, 29 Aug 2023 22:29:08 +0200 +Subject: [PATCH] Faster floating-point positive modulo + +License: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html) +Gale - https://galemc.org + +diff --git a/src/main/java/net/minecraft/util/Mth.java b/src/main/java/net/minecraft/util/Mth.java +index 7327f3bb1c1f764ae1da88af27b1e9fb03fb89d9..aaefd728bb1a9fc398e55fe30c9337d51cf43785 100644 +--- a/src/main/java/net/minecraft/util/Mth.java ++++ b/src/main/java/net/minecraft/util/Mth.java +@@ -139,14 +139,26 @@ public class Mth { + return Math.floorMod(dividend, divisor); + } + +- public static float positiveModulo(float dividend, float divisor) { ++ public static float positiveModuloForAnyDivisor(float dividend, float divisor) { // Gale - faster floating-point positive modulo + return (dividend % divisor + divisor) % divisor; + } + +- public static double positiveModulo(double dividend, double divisor) { ++ public static double positiveModuloForAnyDivisor(double dividend, double divisor) { // Gale - faster floating-point positive modulo + return (dividend % divisor + divisor) % divisor; + } + ++ // Gale start - faster floating-point positive modulo ++ public static float positiveModuloForPositiveDivisor(float dividend, float divisor) { ++ var modulo = dividend % divisor; ++ return modulo < 0 ? modulo + divisor : modulo; ++ } ++ ++ public static double positiveModuloForPositiveDivisor(double dividend, double divisor) { ++ var modulo = dividend % divisor; ++ return modulo < 0 ? modulo + divisor : modulo; ++ } ++ // Gale end - faster floating-point positive modulo ++ + public static boolean isMultipleOf(int a, int b) { + return a % b == 0; + } +diff --git a/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java b/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java +index a6434f2c2d1ddb33e7c51d0a099fd127d8a785e6..aeecd8fc0b9d514990e1fa1f1c790fa61d664a0b 100644 +--- a/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java ++++ b/src/main/java/net/minecraft/world/level/levelgen/blending/Blender.java +@@ -141,7 +141,7 @@ public class Blender { + private static double heightToOffset(double height) { + double d = 1.0D; + double e = height + 0.5D; +- double f = Mth.positiveModulo(e, 8.0D); ++ double f = Mth.positiveModuloForPositiveDivisor(e, 8.0D); // Gale - faster floating-point positive modulo + return 1.0D * (32.0D * (e - 128.0D) - 3.0D * (e - 120.0D) * f + 3.0D * f * f) / (128.0D * (32.0D - 3.0D * f)); + } + diff --git a/patches/server/0020-Strip-raytracing-for-EntityLiving-hasLineOfSight.patch b/patches/server/0021-Strip-raytracing-for-EntityLiving-hasLineOfSight.patch similarity index 100% rename from patches/server/0020-Strip-raytracing-for-EntityLiving-hasLineOfSight.patch rename to patches/server/0021-Strip-raytracing-for-EntityLiving-hasLineOfSight.patch diff --git a/patches/server/0021-Simpler-ShapelessRecipe-comparison-for-vanilla.patch b/patches/server/0022-Simpler-ShapelessRecipe-comparison-for-vanilla.patch similarity index 100% rename from patches/server/0021-Simpler-ShapelessRecipe-comparison-for-vanilla.patch rename to patches/server/0022-Simpler-ShapelessRecipe-comparison-for-vanilla.patch diff --git a/patches/server/0022-Reduce-projectile-chunk-loading.patch b/patches/server/0023-Reduce-projectile-chunk-loading.patch similarity index 100% rename from patches/server/0022-Reduce-projectile-chunk-loading.patch rename to patches/server/0023-Reduce-projectile-chunk-loading.patch diff --git a/patches/server/0023-Predict-Halloween.patch b/patches/server/0024-Predict-Halloween.patch similarity index 100% rename from patches/server/0023-Predict-Halloween.patch rename to patches/server/0024-Predict-Halloween.patch diff --git a/patches/server/0024-Move-random-tick-random.patch b/patches/server/0025-Move-random-tick-random.patch similarity index 100% rename from patches/server/0024-Move-random-tick-random.patch rename to patches/server/0025-Move-random-tick-random.patch diff --git a/patches/server/0025-Optimize-random-calls-in-chunk-ticking.patch b/patches/server/0026-Optimize-random-calls-in-chunk-ticking.patch similarity index 98% rename from patches/server/0025-Optimize-random-calls-in-chunk-ticking.patch rename to patches/server/0026-Optimize-random-calls-in-chunk-ticking.patch index f2a7ebb..2ea93a9 100644 --- a/patches/server/0025-Optimize-random-calls-in-chunk-ticking.patch +++ b/patches/server/0026-Optimize-random-calls-in-chunk-ticking.patch @@ -52,7 +52,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/main/java/net/minecraft/server/level/ServerChunkCache.java b/src/main/java/net/minecraft/server/level/ServerChunkCache.java -index 78201998d6cbee9aa6f0bad80b726b46675393dc..041f188b742ad819e2460e8ca5ab7f44412dbf9b 100644 +index c7a8ec6b99e7db62abcbb1d5aed99738ee8732de..6c77db5edce2101847234f65bd10c5841fd5bd4f 100644 --- a/src/main/java/net/minecraft/server/level/ServerChunkCache.java +++ b/src/main/java/net/minecraft/server/level/ServerChunkCache.java @@ -539,6 +539,7 @@ public class ServerChunkCache extends ChunkSource { diff --git a/patches/server/0026-Reduce-enderman-teleport-chunk-lookups.patch b/patches/server/0027-Reduce-enderman-teleport-chunk-lookups.patch similarity index 100% rename from patches/server/0026-Reduce-enderman-teleport-chunk-lookups.patch rename to patches/server/0027-Reduce-enderman-teleport-chunk-lookups.patch diff --git a/patches/server/0027-Reduce-acquire-POI-for-stuck-entities.patch b/patches/server/0028-Reduce-acquire-POI-for-stuck-entities.patch similarity index 100% rename from patches/server/0027-Reduce-acquire-POI-for-stuck-entities.patch rename to patches/server/0028-Reduce-acquire-POI-for-stuck-entities.patch diff --git a/patches/server/0028-Remove-iterators-from-Inventory-contains.patch b/patches/server/0029-Remove-iterators-from-Inventory-contains.patch similarity index 100% rename from patches/server/0028-Remove-iterators-from-Inventory-contains.patch rename to patches/server/0029-Remove-iterators-from-Inventory-contains.patch diff --git a/patches/server/0029-Check-targeting-range-before-getting-visibility.patch b/patches/server/0030-Check-targeting-range-before-getting-visibility.patch similarity index 100% rename from patches/server/0029-Check-targeting-range-before-getting-visibility.patch rename to patches/server/0030-Check-targeting-range-before-getting-visibility.patch diff --git a/patches/server/0030-Print-stack-trace-for-plugins-not-shutting-down-task.patch b/patches/server/0031-Print-stack-trace-for-plugins-not-shutting-down-task.patch similarity index 96% rename from patches/server/0030-Print-stack-trace-for-plugins-not-shutting-down-task.patch rename to patches/server/0031-Print-stack-trace-for-plugins-not-shutting-down-task.patch index 9c1084b..ace136d 100644 --- a/patches/server/0030-Print-stack-trace-for-plugins-not-shutting-down-task.patch +++ b/patches/server/0031-Print-stack-trace-for-plugins-not-shutting-down-task.patch @@ -31,7 +31,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java -index c2e22dd084d922a827e6dd53e8634ec5b9e2d1ee..97226a1135e9228ec010110b5d24fae00a49996a 100644 +index 04dfa4f59921ec5fcea6fb6989847fc5164ccfda..6d1baf7592a0d016b7d9a842ecc8660c42059490 100644 --- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java +++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java @@ -1141,6 +1141,13 @@ public final class CraftServer implements Server { diff --git a/patches/server/0031-Improve-fluid-direction-caching.patch b/patches/server/0032-Improve-fluid-direction-caching.patch similarity index 100% rename from patches/server/0031-Improve-fluid-direction-caching.patch rename to patches/server/0032-Improve-fluid-direction-caching.patch diff --git a/patches/server/0032-Cache-on-climbable-check.patch b/patches/server/0033-Cache-on-climbable-check.patch similarity index 100% rename from patches/server/0032-Cache-on-climbable-check.patch rename to patches/server/0033-Cache-on-climbable-check.patch diff --git a/patches/server/0033-Make-EntityCollisionContext-a-live-representation.patch b/patches/server/0034-Make-EntityCollisionContext-a-live-representation.patch similarity index 100% rename from patches/server/0033-Make-EntityCollisionContext-a-live-representation.patch rename to patches/server/0034-Make-EntityCollisionContext-a-live-representation.patch diff --git a/patches/server/0034-Improve-container-checking-with-a-bitset.patch b/patches/server/0035-Improve-container-checking-with-a-bitset.patch similarity index 100% rename from patches/server/0034-Improve-container-checking-with-a-bitset.patch rename to patches/server/0035-Improve-container-checking-with-a-bitset.patch diff --git a/patches/server/0035-Better-checking-for-useless-move-packets.patch b/patches/server/0036-Better-checking-for-useless-move-packets.patch similarity index 96% rename from patches/server/0035-Better-checking-for-useless-move-packets.patch rename to patches/server/0036-Better-checking-for-useless-move-packets.patch index 7f2cf99..8dd572d 100644 --- a/patches/server/0035-Better-checking-for-useless-move-packets.patch +++ b/patches/server/0036-Better-checking-for-useless-move-packets.patch @@ -31,7 +31,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/main/java/net/minecraft/server/level/ServerEntity.java b/src/main/java/net/minecraft/server/level/ServerEntity.java -index d934d07ad761319f338d4386536f68fde211c041..e215cb22a226fa61d7eb9a8f69fe2a644d4394f7 100644 +index 196280f54e397c69d32bd4d1f6ae666efdd93773..8c28305ffdb210722b11a0bdcf077452d09bcc2d 100644 --- a/src/main/java/net/minecraft/server/level/ServerEntity.java +++ b/src/main/java/net/minecraft/server/level/ServerEntity.java @@ -181,6 +181,7 @@ public class ServerEntity { diff --git a/patches/server/0036-Use-fast-item-merge-raytracing.patch b/patches/server/0037-Use-fast-item-merge-raytracing.patch similarity index 100% rename from patches/server/0036-Use-fast-item-merge-raytracing.patch rename to patches/server/0037-Use-fast-item-merge-raytracing.patch diff --git a/patches/server/0037-Use-aging-cache-for-biome-temperatures.patch b/patches/server/0038-Use-aging-cache-for-biome-temperatures.patch similarity index 100% rename from patches/server/0037-Use-aging-cache-for-biome-temperatures.patch rename to patches/server/0038-Use-aging-cache-for-biome-temperatures.patch diff --git a/patches/server/0038-Inline-level-height.patch b/patches/server/0039-Inline-level-height.patch similarity index 100% rename from patches/server/0038-Inline-level-height.patch rename to patches/server/0039-Inline-level-height.patch diff --git a/patches/server/0039-Use-ThreadUnsafeRandom-for-mob-spawning.patch b/patches/server/0040-Use-ThreadUnsafeRandom-for-mob-spawning.patch similarity index 100% rename from patches/server/0039-Use-ThreadUnsafeRandom-for-mob-spawning.patch rename to patches/server/0040-Use-ThreadUnsafeRandom-for-mob-spawning.patch diff --git a/patches/server/0040-Remove-streams-and-iterators-from-range-check.patch b/patches/server/0041-Remove-streams-and-iterators-from-range-check.patch similarity index 100% rename from patches/server/0040-Remove-streams-and-iterators-from-range-check.patch rename to patches/server/0041-Remove-streams-and-iterators-from-range-check.patch diff --git a/patches/server/0041-Remove-streams-from-getting-nearby-players.patch b/patches/server/0042-Remove-streams-from-getting-nearby-players.patch similarity index 100% rename from patches/server/0041-Remove-streams-from-getting-nearby-players.patch rename to patches/server/0042-Remove-streams-from-getting-nearby-players.patch diff --git a/patches/server/0042-Block-goal-does-not-load-chunks.patch b/patches/server/0043-Block-goal-does-not-load-chunks.patch similarity index 100% rename from patches/server/0042-Block-goal-does-not-load-chunks.patch rename to patches/server/0043-Block-goal-does-not-load-chunks.patch diff --git a/patches/server/0043-Reduce-entity-allocations.patch b/patches/server/0044-Reduce-entity-allocations.patch similarity index 100% rename from patches/server/0043-Reduce-entity-allocations.patch rename to patches/server/0044-Reduce-entity-allocations.patch diff --git a/patches/server/0044-Remove-lambda-from-ticking-guard.patch b/patches/server/0045-Remove-lambda-from-ticking-guard.patch similarity index 100% rename from patches/server/0044-Remove-lambda-from-ticking-guard.patch rename to patches/server/0045-Remove-lambda-from-ticking-guard.patch diff --git a/patches/server/0045-Reduce-entity-fluid-lookups-if-no-fluids.patch b/patches/server/0046-Reduce-entity-fluid-lookups-if-no-fluids.patch similarity index 100% rename from patches/server/0045-Reduce-entity-fluid-lookups-if-no-fluids.patch rename to patches/server/0046-Reduce-entity-fluid-lookups-if-no-fluids.patch diff --git a/patches/server/0046-SIMD-support.patch b/patches/server/0047-SIMD-support.patch similarity index 97% rename from patches/server/0046-SIMD-support.patch rename to patches/server/0047-SIMD-support.patch index 4baf36e..11e6c52 100644 --- a/patches/server/0046-SIMD-support.patch +++ b/patches/server/0047-SIMD-support.patch @@ -13,7 +13,7 @@ As part of: Pufferfish (https://github.com/pufferfish-gg/Pufferfish) Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html) diff --git a/build.gradle.kts b/build.gradle.kts -index 50bb7e538c7493e52b2d1356ef6c89194efa593a..a0237112353240d9c8d0dc733f9176fd7e95f007 100644 +index 9606c6954f2c53dbbda7e7235cf37308822fea02..4466f21a83cb9ddca7309a194afcb8eded92de81 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -73,6 +73,7 @@ tasks.withType { @@ -84,7 +84,7 @@ index 2acad4c3fd58178b0f8b22bdb04eeeeb689d5afa..850ccd53c5007e8b18344ba76c9e7f00 } diff --git a/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java b/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java -index 5be4267d88604210b7bfcc03b2c2056e0a9f0fb0..13d9fc5f4e6316b3fd6ef5ab50f78c7117e2df3a 100644 +index e75f0e6ce6cb7fa88ca3bd8dd7e63ea885bae341..aba9c02f74bc0a1270d90a17db74f64dadb99f92 100644 --- a/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java +++ b/src/main/java/net/minecraft/server/dedicated/DedicatedServer.java @@ -14,6 +14,8 @@ import java.util.Locale; diff --git a/patches/server/0047-Make-book-writing-configurable.patch b/patches/server/0048-Make-book-writing-configurable.patch similarity index 100% rename from patches/server/0047-Make-book-writing-configurable.patch rename to patches/server/0048-Make-book-writing-configurable.patch diff --git a/patches/server/0048-Optimize-entity-coordinate-key.patch b/patches/server/0049-Optimize-entity-coordinate-key.patch similarity index 96% rename from patches/server/0048-Optimize-entity-coordinate-key.patch rename to patches/server/0049-Optimize-entity-coordinate-key.patch index 80b809a..7abc378 100644 --- a/patches/server/0048-Optimize-entity-coordinate-key.patch +++ b/patches/server/0049-Optimize-entity-coordinate-key.patch @@ -35,7 +35,7 @@ index d4a26febc956d8a4cecda742b28e2700a1148559..1eaa559b177f2dc982865f96dfc7654b public static long getCoordinateKey(final ChunkPos pair) { diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java -index fb43c428813d05f047a801cff8a2682499a03208..a33457376dad6f5e9680518ce11bb47c89f59f1e 100644 +index d751b3ce631527c2e65e649b56880fe0330c07e4..19d05bfec4aafdf3712ad24b4b29a9f55067e578 100644 --- a/src/main/java/net/minecraft/world/entity/Entity.java +++ b/src/main/java/net/minecraft/world/entity/Entity.java @@ -306,7 +306,7 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource { diff --git a/patches/server/0049-Reduce-in-wall-checks.patch b/patches/server/0050-Reduce-in-wall-checks.patch similarity index 100% rename from patches/server/0049-Reduce-in-wall-checks.patch rename to patches/server/0050-Reduce-in-wall-checks.patch diff --git a/patches/server/0050-Make-chat-order-verification-configurable.patch b/patches/server/0051-Make-chat-order-verification-configurable.patch similarity index 100% rename from patches/server/0050-Make-chat-order-verification-configurable.patch rename to patches/server/0051-Make-chat-order-verification-configurable.patch diff --git a/patches/server/0051-Make-ender-dragon-respawn-attempt-after-placing-end-.patch b/patches/server/0052-Make-ender-dragon-respawn-attempt-after-placing-end-.patch similarity index 100% rename from patches/server/0051-Make-ender-dragon-respawn-attempt-after-placing-end-.patch rename to patches/server/0052-Make-ender-dragon-respawn-attempt-after-placing-end-.patch diff --git a/patches/server/0052-Make-saving-fireworks-configurable.patch b/patches/server/0053-Make-saving-fireworks-configurable.patch similarity index 100% rename from patches/server/0052-Make-saving-fireworks-configurable.patch rename to patches/server/0053-Make-saving-fireworks-configurable.patch diff --git a/patches/server/0053-Don-t-trigger-lootable-refresh-for-non-player-intera.patch b/patches/server/0054-Don-t-trigger-lootable-refresh-for-non-player-intera.patch similarity index 100% rename from patches/server/0053-Don-t-trigger-lootable-refresh-for-non-player-intera.patch rename to patches/server/0054-Don-t-trigger-lootable-refresh-for-non-player-intera.patch diff --git a/patches/server/0054-Reduce-hopper-item-checks.patch b/patches/server/0055-Reduce-hopper-item-checks.patch similarity index 100% rename from patches/server/0054-Reduce-hopper-item-checks.patch rename to patches/server/0055-Reduce-hopper-item-checks.patch diff --git a/patches/server/0055-Reduce-villager-item-re-pickup.patch b/patches/server/0056-Reduce-villager-item-re-pickup.patch similarity index 100% rename from patches/server/0055-Reduce-villager-item-re-pickup.patch rename to patches/server/0056-Reduce-villager-item-re-pickup.patch diff --git a/patches/server/0056-Variable-entity-wake-up-duration.patch b/patches/server/0057-Variable-entity-wake-up-duration.patch similarity index 100% rename from patches/server/0056-Variable-entity-wake-up-duration.patch rename to patches/server/0057-Variable-entity-wake-up-duration.patch diff --git a/patches/server/0057-Do-not-process-chat-commands-before-player-has-joine.patch b/patches/server/0058-Do-not-process-chat-commands-before-player-has-joine.patch similarity index 100% rename from patches/server/0057-Do-not-process-chat-commands-before-player-has-joine.patch rename to patches/server/0058-Do-not-process-chat-commands-before-player-has-joine.patch diff --git a/patches/server/0058-Do-not-log-invalid-statistics.patch b/patches/server/0059-Do-not-log-invalid-statistics.patch similarity index 100% rename from patches/server/0058-Do-not-log-invalid-statistics.patch rename to patches/server/0059-Do-not-log-invalid-statistics.patch diff --git a/patches/server/0059-Do-not-log-empty-message-warnings.patch b/patches/server/0060-Do-not-log-empty-message-warnings.patch similarity index 100% rename from patches/server/0059-Do-not-log-empty-message-warnings.patch rename to patches/server/0060-Do-not-log-empty-message-warnings.patch diff --git a/patches/server/0060-Do-not-log-ignored-advancements.patch b/patches/server/0061-Do-not-log-ignored-advancements.patch similarity index 100% rename from patches/server/0060-Do-not-log-ignored-advancements.patch rename to patches/server/0061-Do-not-log-ignored-advancements.patch diff --git a/patches/server/0061-Do-not-log-setBlock-in-far-chunks.patch b/patches/server/0062-Do-not-log-setBlock-in-far-chunks.patch similarity index 100% rename from patches/server/0061-Do-not-log-setBlock-in-far-chunks.patch rename to patches/server/0062-Do-not-log-setBlock-in-far-chunks.patch diff --git a/patches/server/0062-Do-not-log-unrecognized-recipes.patch b/patches/server/0063-Do-not-log-unrecognized-recipes.patch similarity index 100% rename from patches/server/0062-Do-not-log-unrecognized-recipes.patch rename to patches/server/0063-Do-not-log-unrecognized-recipes.patch diff --git a/patches/server/0063-Do-not-log-legacy-Material-initialization.patch b/patches/server/0064-Do-not-log-legacy-Material-initialization.patch similarity index 100% rename from patches/server/0063-Do-not-log-legacy-Material-initialization.patch rename to patches/server/0064-Do-not-log-legacy-Material-initialization.patch diff --git a/patches/server/0064-Do-not-log-plugin-library-loads.patch b/patches/server/0065-Do-not-log-plugin-library-loads.patch similarity index 100% rename from patches/server/0064-Do-not-log-plugin-library-loads.patch rename to patches/server/0065-Do-not-log-plugin-library-loads.patch diff --git a/patches/server/0065-Do-not-log-expired-message-warnings.patch b/patches/server/0066-Do-not-log-expired-message-warnings.patch similarity index 100% rename from patches/server/0065-Do-not-log-expired-message-warnings.patch rename to patches/server/0066-Do-not-log-expired-message-warnings.patch diff --git a/patches/server/0066-Do-not-log-out-of-order-message-warnings.patch b/patches/server/0067-Do-not-log-out-of-order-message-warnings.patch similarity index 100% rename from patches/server/0066-Do-not-log-out-of-order-message-warnings.patch rename to patches/server/0067-Do-not-log-out-of-order-message-warnings.patch diff --git a/patches/server/0067-Do-not-log-Not-Secure-marker.patch b/patches/server/0068-Do-not-log-Not-Secure-marker.patch similarity index 100% rename from patches/server/0067-Do-not-log-Not-Secure-marker.patch rename to patches/server/0068-Do-not-log-Not-Secure-marker.patch diff --git a/patches/server/0068-Do-not-log-disconnections-with-null-id.patch b/patches/server/0069-Do-not-log-disconnections-with-null-id.patch similarity index 100% rename from patches/server/0068-Do-not-log-disconnections-with-null-id.patch rename to patches/server/0069-Do-not-log-disconnections-with-null-id.patch diff --git a/patches/server/0069-Do-not-log-run-as-root-warning.patch b/patches/server/0070-Do-not-log-run-as-root-warning.patch similarity index 100% rename from patches/server/0069-Do-not-log-run-as-root-warning.patch rename to patches/server/0070-Do-not-log-run-as-root-warning.patch diff --git a/patches/server/0070-Do-not-log-offline-mode-warning.patch b/patches/server/0071-Do-not-log-offline-mode-warning.patch similarity index 100% rename from patches/server/0070-Do-not-log-offline-mode-warning.patch rename to patches/server/0071-Do-not-log-offline-mode-warning.patch diff --git a/patches/server/0071-Softly-log-invalid-pool-element-errors.patch b/patches/server/0072-Softly-log-invalid-pool-element-errors.patch similarity index 100% rename from patches/server/0071-Softly-log-invalid-pool-element-errors.patch rename to patches/server/0072-Softly-log-invalid-pool-element-errors.patch diff --git a/patches/server/0072-Fix-outdated-server-showing-in-ping-before-server-fu.patch b/patches/server/0073-Fix-outdated-server-showing-in-ping-before-server-fu.patch similarity index 100% rename from patches/server/0072-Fix-outdated-server-showing-in-ping-before-server-fu.patch rename to patches/server/0073-Fix-outdated-server-showing-in-ping-before-server-fu.patch diff --git a/patches/server/0073-Make-sand-duping-fix-configurable.patch b/patches/server/0074-Make-sand-duping-fix-configurable.patch similarity index 100% rename from patches/server/0073-Make-sand-duping-fix-configurable.patch rename to patches/server/0074-Make-sand-duping-fix-configurable.patch diff --git a/patches/server/0074-Make-tripwire-duping-fix-configurable.patch b/patches/server/0075-Make-tripwire-duping-fix-configurable.patch similarity index 100% rename from patches/server/0074-Make-tripwire-duping-fix-configurable.patch rename to patches/server/0075-Make-tripwire-duping-fix-configurable.patch diff --git a/patches/server/0075-Fix-MC-238526.patch b/patches/server/0076-Fix-MC-238526.patch similarity index 100% rename from patches/server/0075-Fix-MC-238526.patch rename to patches/server/0076-Fix-MC-238526.patch diff --git a/patches/server/0076-Fix-cow-rotation-when-shearing-mooshroom.patch b/patches/server/0077-Fix-cow-rotation-when-shearing-mooshroom.patch similarity index 100% rename from patches/server/0076-Fix-cow-rotation-when-shearing-mooshroom.patch rename to patches/server/0077-Fix-cow-rotation-when-shearing-mooshroom.patch diff --git a/patches/server/0077-Fix-MC-121706.patch b/patches/server/0078-Fix-MC-121706.patch similarity index 100% rename from patches/server/0077-Fix-MC-121706.patch rename to patches/server/0078-Fix-MC-121706.patch diff --git a/patches/server/0078-Fix-MC-110386.patch b/patches/server/0079-Fix-MC-110386.patch similarity index 100% rename from patches/server/0078-Fix-MC-110386.patch rename to patches/server/0079-Fix-MC-110386.patch diff --git a/patches/server/0079-Fix-MC-31819.patch b/patches/server/0080-Fix-MC-31819.patch similarity index 100% rename from patches/server/0079-Fix-MC-31819.patch rename to patches/server/0080-Fix-MC-31819.patch diff --git a/patches/server/0080-Fix-MC-26304.patch b/patches/server/0081-Fix-MC-26304.patch similarity index 100% rename from patches/server/0080-Fix-MC-26304.patch rename to patches/server/0081-Fix-MC-26304.patch diff --git a/patches/server/0081-End-gateway-should-check-if-entity-can-use-portal.patch b/patches/server/0082-End-gateway-should-check-if-entity-can-use-portal.patch similarity index 100% rename from patches/server/0081-End-gateway-should-check-if-entity-can-use-portal.patch rename to patches/server/0082-End-gateway-should-check-if-entity-can-use-portal.patch diff --git a/patches/server/0082-Make-arrow-movement-resetting-despawn-counter-config.patch b/patches/server/0083-Make-arrow-movement-resetting-despawn-counter-config.patch similarity index 100% rename from patches/server/0082-Make-arrow-movement-resetting-despawn-counter-config.patch rename to patches/server/0083-Make-arrow-movement-resetting-despawn-counter-config.patch diff --git a/patches/server/0083-Make-logging-login-locations-configurable.patch b/patches/server/0084-Make-logging-login-locations-configurable.patch similarity index 100% rename from patches/server/0083-Make-logging-login-locations-configurable.patch rename to patches/server/0084-Make-logging-login-locations-configurable.patch diff --git a/patches/server/0084-Reduce-array-allocations.patch b/patches/server/0085-Reduce-array-allocations.patch similarity index 100% rename from patches/server/0084-Reduce-array-allocations.patch rename to patches/server/0085-Reduce-array-allocations.patch diff --git a/patches/server/0085-Optimize-sun-burn-tick.patch b/patches/server/0086-Optimize-sun-burn-tick.patch similarity index 100% rename from patches/server/0085-Optimize-sun-burn-tick.patch rename to patches/server/0086-Optimize-sun-burn-tick.patch diff --git a/patches/server/0086-Reduce-lambda-and-Optional-allocation-in-EntityBased.patch b/patches/server/0087-Reduce-lambda-and-Optional-allocation-in-EntityBased.patch similarity index 100% rename from patches/server/0086-Reduce-lambda-and-Optional-allocation-in-EntityBased.patch rename to patches/server/0087-Reduce-lambda-and-Optional-allocation-in-EntityBased.patch diff --git a/patches/server/0087-Replace-AI-goal-set-with-optimized-collection.patch b/patches/server/0088-Replace-AI-goal-set-with-optimized-collection.patch similarity index 100% rename from patches/server/0087-Replace-AI-goal-set-with-optimized-collection.patch rename to patches/server/0088-Replace-AI-goal-set-with-optimized-collection.patch diff --git a/patches/server/0088-Replace-game-rules-map-with-optimized-collection.patch b/patches/server/0089-Replace-game-rules-map-with-optimized-collection.patch similarity index 100% rename from patches/server/0088-Replace-game-rules-map-with-optimized-collection.patch rename to patches/server/0089-Replace-game-rules-map-with-optimized-collection.patch diff --git a/patches/server/0089-Replace-AI-attributes-with-optimized-collections.patch b/patches/server/0090-Replace-AI-attributes-with-optimized-collections.patch similarity index 100% rename from patches/server/0089-Replace-AI-attributes-with-optimized-collections.patch rename to patches/server/0090-Replace-AI-attributes-with-optimized-collections.patch diff --git a/patches/server/0090-Replace-class-map-with-optimized-collection.patch b/patches/server/0091-Replace-class-map-with-optimized-collection.patch similarity index 100% rename from patches/server/0090-Replace-class-map-with-optimized-collection.patch rename to patches/server/0091-Replace-class-map-with-optimized-collection.patch diff --git a/patches/server/0091-Replace-throttle-tracker-map-with-optimized-collecti.patch b/patches/server/0092-Replace-throttle-tracker-map-with-optimized-collecti.patch similarity index 100% rename from patches/server/0091-Replace-throttle-tracker-map-with-optimized-collecti.patch rename to patches/server/0092-Replace-throttle-tracker-map-with-optimized-collecti.patch diff --git a/patches/server/0092-Replace-shape-full-block-cache-with-hashtable.patch b/patches/server/0093-Replace-shape-full-block-cache-with-hashtable.patch similarity index 100% rename from patches/server/0092-Replace-shape-full-block-cache-with-hashtable.patch rename to patches/server/0093-Replace-shape-full-block-cache-with-hashtable.patch diff --git a/patches/server/0093-Avoid-Class-isAssignableFrom-call-in-ClassInstanceMu.patch b/patches/server/0094-Avoid-Class-isAssignableFrom-call-in-ClassInstanceMu.patch similarity index 100% rename from patches/server/0093-Avoid-Class-isAssignableFrom-call-in-ClassInstanceMu.patch rename to patches/server/0094-Avoid-Class-isAssignableFrom-call-in-ClassInstanceMu.patch diff --git a/patches/server/0094-Cache-BlockStatePairKey-hash.patch b/patches/server/0095-Cache-BlockStatePairKey-hash.patch similarity index 100% rename from patches/server/0094-Cache-BlockStatePairKey-hash.patch rename to patches/server/0095-Cache-BlockStatePairKey-hash.patch diff --git a/patches/server/0095-Cache-CubeVoxelShape-shape-array.patch b/patches/server/0096-Cache-CubeVoxelShape-shape-array.patch similarity index 100% rename from patches/server/0095-Cache-CubeVoxelShape-shape-array.patch rename to patches/server/0096-Cache-CubeVoxelShape-shape-array.patch diff --git a/patches/server/0096-Replace-division-by-multiplication-in-CubePointRange.patch b/patches/server/0097-Replace-division-by-multiplication-in-CubePointRange.patch similarity index 100% rename from patches/server/0096-Replace-division-by-multiplication-in-CubePointRange.patch rename to patches/server/0097-Replace-division-by-multiplication-in-CubePointRange.patch diff --git a/patches/server/0097-Replace-parts-by-size-in-CubePointRange.patch b/patches/server/0098-Replace-parts-by-size-in-CubePointRange.patch similarity index 100% rename from patches/server/0097-Replace-parts-by-size-in-CubePointRange.patch rename to patches/server/0098-Replace-parts-by-size-in-CubePointRange.patch diff --git a/patches/server/0098-Check-frozen-ticks-before-landing-block.patch b/patches/server/0099-Check-frozen-ticks-before-landing-block.patch similarity index 100% rename from patches/server/0098-Check-frozen-ticks-before-landing-block.patch rename to patches/server/0099-Check-frozen-ticks-before-landing-block.patch diff --git a/patches/server/0099-Faster-chunk-serialization.patch b/patches/server/0100-Faster-chunk-serialization.patch similarity index 100% rename from patches/server/0099-Faster-chunk-serialization.patch rename to patches/server/0100-Faster-chunk-serialization.patch diff --git a/patches/server/0100-Update-boss-bar-within-tick.patch b/patches/server/0101-Update-boss-bar-within-tick.patch similarity index 100% rename from patches/server/0100-Update-boss-bar-within-tick.patch rename to patches/server/0101-Update-boss-bar-within-tick.patch diff --git a/patches/server/0101-Cache-ominous-banner-item.patch b/patches/server/0102-Cache-ominous-banner-item.patch similarity index 100% rename from patches/server/0101-Cache-ominous-banner-item.patch rename to patches/server/0102-Cache-ominous-banner-item.patch diff --git a/patches/server/0102-Optimize-world-generation-chunk-and-block-access.patch b/patches/server/0103-Optimize-world-generation-chunk-and-block-access.patch similarity index 100% rename from patches/server/0102-Optimize-world-generation-chunk-and-block-access.patch rename to patches/server/0103-Optimize-world-generation-chunk-and-block-access.patch diff --git a/patches/server/0103-Cache-world-generator-sea-level.patch b/patches/server/0104-Cache-world-generator-sea-level.patch similarity index 100% rename from patches/server/0103-Cache-world-generator-sea-level.patch rename to patches/server/0104-Cache-world-generator-sea-level.patch diff --git a/patches/server/0104-Skip-secondary-POI-sensor-if-absent.patch b/patches/server/0105-Skip-secondary-POI-sensor-if-absent.patch similarity index 100% rename from patches/server/0104-Skip-secondary-POI-sensor-if-absent.patch rename to patches/server/0105-Skip-secondary-POI-sensor-if-absent.patch diff --git a/patches/server/0105-Optimize-villager-data-storage.patch b/patches/server/0106-Optimize-villager-data-storage.patch similarity index 100% rename from patches/server/0105-Optimize-villager-data-storage.patch rename to patches/server/0106-Optimize-villager-data-storage.patch diff --git a/patches/server/0106-Skip-entity-move-if-movement-is-zero.patch b/patches/server/0107-Skip-entity-move-if-movement-is-zero.patch similarity index 100% rename from patches/server/0106-Skip-entity-move-if-movement-is-zero.patch rename to patches/server/0107-Skip-entity-move-if-movement-is-zero.patch diff --git a/patches/server/0107-Store-mob-counts-in-an-array.patch b/patches/server/0108-Store-mob-counts-in-an-array.patch similarity index 100% rename from patches/server/0107-Store-mob-counts-in-an-array.patch rename to patches/server/0108-Store-mob-counts-in-an-array.patch diff --git a/patches/server/0108-Use-linked-map-for-entity-trackers.patch b/patches/server/0109-Use-linked-map-for-entity-trackers.patch similarity index 100% rename from patches/server/0108-Use-linked-map-for-entity-trackers.patch rename to patches/server/0109-Use-linked-map-for-entity-trackers.patch diff --git a/patches/server/0109-Optimize-noise-generation.patch b/patches/server/0110-Optimize-noise-generation.patch similarity index 100% rename from patches/server/0109-Optimize-noise-generation.patch rename to patches/server/0110-Optimize-noise-generation.patch diff --git a/patches/server/0110-Optimize-sheep-offspring-color.patch b/patches/server/0111-Optimize-sheep-offspring-color.patch similarity index 100% rename from patches/server/0110-Optimize-sheep-offspring-color.patch rename to patches/server/0111-Optimize-sheep-offspring-color.patch diff --git a/patches/server/0111-Hide-flames-on-entities-with-fire-resistance.patch b/patches/server/0112-Hide-flames-on-entities-with-fire-resistance.patch similarity index 100% rename from patches/server/0111-Hide-flames-on-entities-with-fire-resistance.patch rename to patches/server/0112-Hide-flames-on-entities-with-fire-resistance.patch diff --git a/patches/server/0112-Skip-cloning-advancement-criteria.patch b/patches/server/0113-Skip-cloning-advancement-criteria.patch similarity index 100% rename from patches/server/0112-Skip-cloning-advancement-criteria.patch rename to patches/server/0113-Skip-cloning-advancement-criteria.patch diff --git a/patches/server/0113-Reduce-block-destruction-packet-allocations.patch b/patches/server/0114-Reduce-block-destruction-packet-allocations.patch similarity index 100% rename from patches/server/0113-Reduce-block-destruction-packet-allocations.patch rename to patches/server/0114-Reduce-block-destruction-packet-allocations.patch diff --git a/patches/server/0114-Spread-out-sending-all-player-info.patch b/patches/server/0115-Spread-out-sending-all-player-info.patch similarity index 100% rename from patches/server/0114-Spread-out-sending-all-player-info.patch rename to patches/server/0115-Spread-out-sending-all-player-info.patch diff --git a/patches/server/0115-Optimize-player-list-for-sending-player-info.patch b/patches/server/0116-Optimize-player-list-for-sending-player-info.patch similarity index 100% rename from patches/server/0115-Optimize-player-list-for-sending-player-info.patch rename to patches/server/0116-Optimize-player-list-for-sending-player-info.patch diff --git a/patches/server/0116-Skip-PlayerCommandSendEvent-if-there-are-no-listener.patch b/patches/server/0117-Skip-PlayerCommandSendEvent-if-there-are-no-listener.patch similarity index 100% rename from patches/server/0116-Skip-PlayerCommandSendEvent-if-there-are-no-listener.patch rename to patches/server/0117-Skip-PlayerCommandSendEvent-if-there-are-no-listener.patch diff --git a/patches/server/0117-Send-multiple-keep-alive-packets.patch b/patches/server/0118-Send-multiple-keep-alive-packets.patch similarity index 100% rename from patches/server/0117-Send-multiple-keep-alive-packets.patch rename to patches/server/0118-Send-multiple-keep-alive-packets.patch diff --git a/patches/server/0118-Make-slow-login-timeout-configurable.patch b/patches/server/0119-Make-slow-login-timeout-configurable.patch similarity index 100% rename from patches/server/0118-Make-slow-login-timeout-configurable.patch rename to patches/server/0119-Make-slow-login-timeout-configurable.patch diff --git a/patches/server/0119-Make-max-interaction-distance-configurable.patch b/patches/server/0120-Make-max-interaction-distance-configurable.patch similarity index 100% rename from patches/server/0119-Make-max-interaction-distance-configurable.patch rename to patches/server/0120-Make-max-interaction-distance-configurable.patch diff --git a/patches/server/0120-Load-portal-destination-chunk-before-entity-teleport.patch b/patches/server/0121-Load-portal-destination-chunk-before-entity-teleport.patch similarity index 100% rename from patches/server/0120-Load-portal-destination-chunk-before-entity-teleport.patch rename to patches/server/0121-Load-portal-destination-chunk-before-entity-teleport.patch diff --git a/patches/server/0121-Don-t-load-chunks-to-spawn-phantoms.patch b/patches/server/0122-Don-t-load-chunks-to-spawn-phantoms.patch similarity index 100% rename from patches/server/0121-Don-t-load-chunks-to-spawn-phantoms.patch rename to patches/server/0122-Don-t-load-chunks-to-spawn-phantoms.patch diff --git a/patches/server/0122-Don-t-load-chunks-to-activate-climbing-entities.patch b/patches/server/0123-Don-t-load-chunks-to-activate-climbing-entities.patch similarity index 100% rename from patches/server/0122-Don-t-load-chunks-to-activate-climbing-entities.patch rename to patches/server/0123-Don-t-load-chunks-to-activate-climbing-entities.patch diff --git a/patches/server/0123-Broadcast-crit-animations-as-the-entity-being-critte.patch b/patches/server/0124-Broadcast-crit-animations-as-the-entity-being-critte.patch similarity index 100% rename from patches/server/0123-Broadcast-crit-animations-as-the-entity-being-critte.patch rename to patches/server/0124-Broadcast-crit-animations-as-the-entity-being-critte.patch diff --git a/patches/server/0124-Ignore-null-legacy-structure-data.patch b/patches/server/0125-Ignore-null-legacy-structure-data.patch similarity index 100% rename from patches/server/0124-Ignore-null-legacy-structure-data.patch rename to patches/server/0125-Ignore-null-legacy-structure-data.patch diff --git a/patches/server/0125-Skip-unnecessary-mob-spawning-computations.patch b/patches/server/0126-Skip-unnecessary-mob-spawning-computations.patch similarity index 100% rename from patches/server/0125-Skip-unnecessary-mob-spawning-computations.patch rename to patches/server/0126-Skip-unnecessary-mob-spawning-computations.patch diff --git a/patches/server/0126-Prevent-entities-random-strolling-into-non-ticking-c.patch b/patches/server/0127-Prevent-entities-random-strolling-into-non-ticking-c.patch similarity index 100% rename from patches/server/0126-Prevent-entities-random-strolling-into-non-ticking-c.patch rename to patches/server/0127-Prevent-entities-random-strolling-into-non-ticking-c.patch diff --git a/patches/server/0127-Do-not-place-player-in-world-if-kicked-before-being-.patch b/patches/server/0128-Do-not-place-player-in-world-if-kicked-before-being-.patch similarity index 100% rename from patches/server/0127-Do-not-place-player-in-world-if-kicked-before-being-.patch rename to patches/server/0128-Do-not-place-player-in-world-if-kicked-before-being-.patch diff --git a/patches/server/0128-CraftBukkit-UUID-to-world-map.patch b/patches/server/0129-CraftBukkit-UUID-to-world-map.patch similarity index 100% rename from patches/server/0128-CraftBukkit-UUID-to-world-map.patch rename to patches/server/0129-CraftBukkit-UUID-to-world-map.patch diff --git a/patches/server/0129-Global-EULA-file.patch b/patches/server/0130-Global-EULA-file.patch similarity index 100% rename from patches/server/0129-Global-EULA-file.patch rename to patches/server/0130-Global-EULA-file.patch diff --git a/patches/server/0130-Specific-interval-TPS-API.patch b/patches/server/0131-Specific-interval-TPS-API.patch similarity index 100% rename from patches/server/0130-Specific-interval-TPS-API.patch rename to patches/server/0131-Specific-interval-TPS-API.patch diff --git a/patches/server/0131-5-second-TPS-average.patch b/patches/server/0132-5-second-TPS-average.patch similarity index 100% rename from patches/server/0131-5-second-TPS-average.patch rename to patches/server/0132-5-second-TPS-average.patch diff --git a/patches/server/0132-Measure-last-tick-time.patch b/patches/server/0133-Measure-last-tick-time.patch similarity index 100% rename from patches/server/0132-Measure-last-tick-time.patch rename to patches/server/0133-Measure-last-tick-time.patch diff --git a/patches/server/0133-Last-tick-time-API.patch b/patches/server/0134-Last-tick-time-API.patch similarity index 100% rename from patches/server/0133-Last-tick-time-API.patch rename to patches/server/0134-Last-tick-time-API.patch diff --git a/patches/server/0134-Show-last-tick-time-in-tps-command.patch b/patches/server/0135-Show-last-tick-time-in-tps-command.patch similarity index 100% rename from patches/server/0134-Show-last-tick-time-in-tps-command.patch rename to patches/server/0135-Show-last-tick-time-in-tps-command.patch diff --git a/patches/server/0135-Increase-time-statistics-in-intervals.patch b/patches/server/0136-Increase-time-statistics-in-intervals.patch similarity index 100% rename from patches/server/0135-Increase-time-statistics-in-intervals.patch rename to patches/server/0136-Increase-time-statistics-in-intervals.patch diff --git a/patches/server/0136-For-collision-check-has-physics-before-same-vehicle.patch b/patches/server/0137-For-collision-check-has-physics-before-same-vehicle.patch similarity index 100% rename from patches/server/0136-For-collision-check-has-physics-before-same-vehicle.patch rename to patches/server/0137-For-collision-check-has-physics-before-same-vehicle.patch diff --git a/patches/server/0137-Skip-negligible-planar-movement-multiplication.patch b/patches/server/0138-Skip-negligible-planar-movement-multiplication.patch similarity index 100% rename from patches/server/0137-Skip-negligible-planar-movement-multiplication.patch rename to patches/server/0138-Skip-negligible-planar-movement-multiplication.patch diff --git a/patches/server/0138-Optimize-matching-item-checks.patch b/patches/server/0139-Optimize-matching-item-checks.patch similarity index 100% rename from patches/server/0138-Optimize-matching-item-checks.patch rename to patches/server/0139-Optimize-matching-item-checks.patch diff --git a/patches/server/0139-Pre-compute-VarInt-and-VarLong-sizes.patch b/patches/server/0140-Pre-compute-VarInt-and-VarLong-sizes.patch similarity index 100% rename from patches/server/0139-Pre-compute-VarInt-and-VarLong-sizes.patch rename to patches/server/0140-Pre-compute-VarInt-and-VarLong-sizes.patch diff --git a/patches/server/0140-Optimize-FriendlyByteBuf-writeVarInt-and-FriendlyByt.patch b/patches/server/0141-Optimize-FriendlyByteBuf-writeVarInt-and-FriendlyByt.patch similarity index 100% rename from patches/server/0140-Optimize-FriendlyByteBuf-writeVarInt-and-FriendlyByt.patch rename to patches/server/0141-Optimize-FriendlyByteBuf-writeVarInt-and-FriendlyByt.patch diff --git a/patches/server/0141-Reduce-RandomSource-instances.patch b/patches/server/0142-Reduce-RandomSource-instances.patch similarity index 100% rename from patches/server/0141-Reduce-RandomSource-instances.patch rename to patches/server/0142-Reduce-RandomSource-instances.patch diff --git a/patches/server/0142-Add-xor-shift-random.patch b/patches/server/0143-Add-xor-shift-random.patch similarity index 100% rename from patches/server/0142-Add-xor-shift-random.patch rename to patches/server/0143-Add-xor-shift-random.patch diff --git a/patches/server/0143-Server-thread-priority-environment-variable.patch b/patches/server/0144-Server-thread-priority-environment-variable.patch similarity index 100% rename from patches/server/0143-Server-thread-priority-environment-variable.patch rename to patches/server/0144-Server-thread-priority-environment-variable.patch diff --git a/patches/server/0144-Instantly-continue-on-world-upgrade-finish.patch b/patches/server/0145-Instantly-continue-on-world-upgrade-finish.patch similarity index 100% rename from patches/server/0144-Instantly-continue-on-world-upgrade-finish.patch rename to patches/server/0145-Instantly-continue-on-world-upgrade-finish.patch diff --git a/patches/server/0145-Virtual-thread-support.patch b/patches/server/0146-Virtual-thread-support.patch similarity index 100% rename from patches/server/0145-Virtual-thread-support.patch rename to patches/server/0146-Virtual-thread-support.patch