From 46eccd8c7d083db2154b64ac1c0ce3cfa255b468 Mon Sep 17 00:00:00 2001 From: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com> Date: Sun, 15 Dec 2024 16:40:37 +0100 Subject: [PATCH] readd cactus config --- .../world/level/GameRules.java.patch | 2 +- .../minecraft/world/level/Level.java.patch | 21 +++++-------------- .../world/level/block/CactusBlock.java.patch | 21 +++++++++++++++++++ 3 files changed, 27 insertions(+), 17 deletions(-) diff --git a/paper-server/patches/sources/net/minecraft/world/level/GameRules.java.patch b/paper-server/patches/sources/net/minecraft/world/level/GameRules.java.patch index 2fd51d80b6..79f390f51b 100644 --- a/paper-server/patches/sources/net/minecraft/world/level/GameRules.java.patch +++ b/paper-server/patches/sources/net/minecraft/world/level/GameRules.java.patch @@ -270,7 +270,7 @@ - this.onChanged(context.getSource().getServer()); + public void setFromArgument(CommandContext<CommandSourceStack> context, String paramName, GameRules.Key<T> gameRuleKey) { // Paper - Add WorldGameRuleChangeEvent + this.updateFromArgument(context, paramName, gameRuleKey); // Paper - Add WorldGameRuleChangeEvent -+ this.onChanged(context.getSource().getLevel()); ++ this.onChanged(context.getSource().getLevel()); // CraftBukkit - per-world } - public void onChanged(@Nullable MinecraftServer server) { diff --git a/paper-server/patches/sources/net/minecraft/world/level/Level.java.patch b/paper-server/patches/sources/net/minecraft/world/level/Level.java.patch index 8a80c15b82..82aaac77b4 100644 --- a/paper-server/patches/sources/net/minecraft/world/level/Level.java.patch +++ b/paper-server/patches/sources/net/minecraft/world/level/Level.java.patch @@ -11,14 +11,6 @@ import net.minecraft.sounds.SoundEvent; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; -@@ -42,6 +_,7 @@ - import net.minecraft.world.entity.Entity; - import net.minecraft.world.entity.boss.EnderDragonPart; - import net.minecraft.world.entity.boss.enderdragon.EnderDragon; -+import net.minecraft.world.entity.item.ItemEntity; - import net.minecraft.world.entity.player.Player; - import net.minecraft.world.item.ItemStack; - import net.minecraft.world.item.alchemy.PotionBrewing; @@ -79,6 +_,27 @@ import net.minecraft.world.phys.Vec3; import net.minecraft.world.scores.Scoreboard; @@ -71,7 +63,7 @@ + public boolean isBlockPlaceCancelled = false; // Paper - prevent calling cleanup logic when undoing a block place upon a cancelled BlockPlaceEvent + public Map<BlockPos, org.bukkit.craftbukkit.block.CraftBlockState> capturedBlockStates = new java.util.LinkedHashMap<>(); // Paper + public Map<BlockPos, BlockEntity> capturedTileEntities = new java.util.LinkedHashMap<>(); // Paper - Retain block place order when capturing blockstates -+ public List<ItemEntity> captureDrops; ++ public List<net.minecraft.world.entity.item.ItemEntity> captureDrops; + public final it.unimi.dsi.fastutil.objects.Object2LongOpenHashMap<SpawnCategory> ticksPerSpawnCategory = new it.unimi.dsi.fastutil.objects.Object2LongOpenHashMap<>(); + public boolean populating; + public final org.spigotmc.SpigotWorldConfig spigotConfig; // Spigot @@ -263,7 +255,7 @@ public boolean isInWorldBounds(BlockPos pos) { return !this.isOutsideBuildHeight(pos) && isInWorldBoundsHorizontal(pos); } -@@ -176,25 +_,88 @@ +@@ -176,21 +_,84 @@ } private static boolean isInWorldBoundsHorizontal(BlockPos pos) { @@ -283,6 +275,7 @@ @Override - public LevelChunk getChunk(int chunkX, int chunkZ) { - return (LevelChunk)this.getChunk(chunkX, chunkZ, ChunkStatus.FULL); +- } + public final LevelChunk getChunk(int chunkX, int chunkZ) { // Paper - final to help inline + // Paper start - Perf: make sure loaded chunks get the inlined variant of this function + net.minecraft.server.level.ServerChunkCache cps = ((ServerLevel)this).getChunkSource(); @@ -347,15 +340,11 @@ + // reduces need to do isLoaded before getType + public final @Nullable BlockState getBlockStateIfLoadedAndInBounds(BlockPos blockposition) { + return getWorldBorder().isWithinBounds(blockposition) ? getBlockStateIfLoaded(blockposition) : null; - } ++ } ++ // Paper end @Nullable @Override - public ChunkAccess getChunk(int x, int z, ChunkStatus chunkStatus, boolean requireChunk) { -+ // Paper end - ChunkAccess chunk = this.getChunkSource().getChunk(x, z, chunkStatus, requireChunk); - if (chunk == null && requireChunk) { - throw new IllegalStateException("Should always be able to create a chunk!"); @@ -210,6 +_,22 @@ @Override diff --git a/paper-server/patches/sources/net/minecraft/world/level/block/CactusBlock.java.patch b/paper-server/patches/sources/net/minecraft/world/level/block/CactusBlock.java.patch index acde2470f8..05f47c53f7 100644 --- a/paper-server/patches/sources/net/minecraft/world/level/block/CactusBlock.java.patch +++ b/paper-server/patches/sources/net/minecraft/world/level/block/CactusBlock.java.patch @@ -1,5 +1,26 @@ --- a/net/minecraft/world/level/block/CactusBlock.java +++ b/net/minecraft/world/level/block/CactusBlock.java +@@ -56,14 +_,17 @@ + i++; + } + +- if (i < 3) { ++ if (i < level.paperConfig().maxGrowthHeight.cactus) { // Paper - Configurable cactus/bamboo/reed growth height + int ageValue = state.getValue(AGE); +- if (ageValue == 15) { ++ ++ int modifier = level.spigotConfig.cactusModifier; // Spigot - SPIGOT-7159: Better modifier resolution ++ if (ageValue >= 15 || (modifier != 100 && random.nextFloat() < (modifier / (100.0f * 16)))) { // Spigot - SPIGOT-7159: Better modifier ++ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(level, blockPos, this.defaultBlockState()); // CraftBukkit + level.setBlockAndUpdate(blockPos, this.defaultBlockState()); + BlockState blockState = state.setValue(AGE, Integer.valueOf(0)); + level.setBlock(pos, blockState, 4); + level.neighborChanged(blockState, blockPos, this, null, false); +- } else { ++ } else if (modifier == 100 || random.nextFloat() < (modifier / (100.0f * 16))) { // Spigot - SPIGOT-7159: Better modifier resolution + level.setBlock(pos, state.setValue(AGE, Integer.valueOf(ageValue + 1)), 4); + } + } @@ -113,7 +_,8 @@ @Override