Updated Upstream (Paper)

Upstream has released updates that appear to apply and compile correctly

Paper Changes:
PaperMC/Paper@ce7516d Fix global limit display for MISC mob category (PaperMC/Paper#6612)
PaperMC/Paper@0680f4f fix per-player-mob-spawns cause total limit cap by Bukkit's spawn limit (PaperMC/Paper#6574)
PaperMC/Paper@0d19cd7 Legacy data should look for legacy materials (Fixes PaperMC/Paper#6618)
This commit is contained in:
granny
2021-09-17 18:50:32 -07:00
parent 3b7d5ed263
commit 3ff85ed726
2 changed files with 3 additions and 3 deletions

View File

@@ -2919,10 +2919,10 @@ index b93056b91e7ebd49e6ddb53ccb6c05c056088df9..6f4e6105aa1d6546daa2424f57972fd2
}
diff --git a/src/main/java/net/minecraft/world/level/NaturalSpawner.java b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
index b59f1554b4ad26d362c41c00b7a864a72efbd602..356817f909143518e97613c6bd56f11473799e0e 100644
index 0b228b8bcae5ed2840ab244b6de35732f737504d..d2a282d9c84952627a0ae1a4b1ff388e39c472c3 100644
--- a/src/main/java/net/minecraft/world/level/NaturalSpawner.java
+++ b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
@@ -411,12 +411,12 @@ public final class NaturalSpawner {
@@ -415,12 +415,12 @@ public final class NaturalSpawner {
return spawnGroup == MobCategory.MONSTER && world.getBlockState(pos.below()).is(Blocks.NETHER_BRICKS) && structureAccessor.getStructureAt(pos, false, StructureFeature.NETHER_BRIDGE).isValid() ? StructureFeature.NETHER_BRIDGE.getSpecialEnemies() : chunkGenerator.getMobsAt(biome != null ? biome : world.getBiome(pos), structureAccessor, spawnGroup, pos);
}