geforkt von Mirrors/Paper
b31089a929
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: d264e972 #591: Add option for a consumer before spawning an item 1c537fce #590: Add spawn and transform reasons for piglin zombification. CraftBukkit Changes: ee5006d1 #810: Add option for a consumer before spawning an item f6a39d3c #809: Add spawn and transform reasons for piglin zombification. 0c24068a Organise imports Spigot Changes: bff52619 Organise imports
19 Zeilen
937 B
Diff
19 Zeilen
937 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Mon, 24 Aug 2020 08:39:06 -0700
|
|
Subject: [PATCH] Fix nerfed slime when splitting
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntitySlime.java b/src/main/java/net/minecraft/server/EntitySlime.java
|
|
index 60818e1a7ce9c637bef8dc05de8cba10975ffc79..80fab9290479f876fd78997c1bd55fe6b00aac45 100644
|
|
--- a/src/main/java/net/minecraft/server/EntitySlime.java
|
|
+++ b/src/main/java/net/minecraft/server/EntitySlime.java
|
|
@@ -207,6 +207,7 @@ public class EntitySlime extends EntityInsentient implements IMonster {
|
|
entityslime.setPersistent();
|
|
}
|
|
|
|
+ entityslime.aware = this.aware; // Paper
|
|
entityslime.setCustomName(ichatbasecomponent);
|
|
entityslime.setNoAI(flag);
|
|
entityslime.setInvulnerable(this.isInvulnerable());
|