2022-04-16 20:32:20 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Fri, 15 Apr 2022 17:09:28 -0700
|
|
|
|
Subject: [PATCH] Fix slime spawners not spawning outside slime chunks
|
|
|
|
|
|
|
|
Fixes MC-50647 by just checking if the spawn type is a SPAWNER
|
|
|
|
and then bypassing the spawn check logic if on slimes if it is.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/monster/Slime.java b/src/main/java/net/minecraft/world/entity/monster/Slime.java
|
2023-09-22 17:24:59 +02:00
|
|
|
index 48a420b7455f872c351e04be3918808e51b192ed..b14979ab7bed34a37fceff5589ecb789bab31318 100644
|
2022-04-16 20:32:20 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/Slime.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/Slime.java
|
2023-09-22 17:24:59 +02:00
|
|
|
@@ -329,6 +329,11 @@ public class Slime extends Mob implements Enemy {
|
2022-04-16 20:32:20 +02:00
|
|
|
|
2022-06-08 15:36:56 +02:00
|
|
|
public static boolean checkSlimeSpawnRules(EntityType<Slime> type, LevelAccessor world, MobSpawnType spawnReason, BlockPos pos, RandomSource random) {
|
2022-04-16 20:32:20 +02:00
|
|
|
if (world.getDifficulty() != Difficulty.PEACEFUL) {
|
|
|
|
+ // Paper start - fix slime spawners; Fixes MC-50647
|
|
|
|
+ if (spawnReason == MobSpawnType.SPAWNER) {
|
|
|
|
+ return random.nextInt(10) == 0;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
// Paper start - Replace rules for Height in Swamp Biome
|
2022-06-10 00:48:46 +02:00
|
|
|
final double maxHeightSwamp = world.getMinecraftWorld().paperConfig().entities.spawning.slimeSpawnHeight.surfaceBiome.maximum;
|
|
|
|
final double minHeightSwamp = world.getMinecraftWorld().paperConfig().entities.spawning.slimeSpawnHeight.surfaceBiome.minimum;
|