SPIGOT-5571: Beehive MaxEntities cannot be set back to 3

This commit is contained in:
ShaneBee 2020-02-09 19:49:35 -08:00 committed by md_5
parent 708be69539
commit 880190573c

View File

@ -118,15 +118,11 @@
}
@Override
@@ -275,6 +311,11 @@
@@ -275,6 +311,7 @@
if (this.x()) {
nbttagcompound.set("FlowerPos", GameProfileSerializer.a(this.flowerPos));
}
+ // CraftBukkit start
+ if (this.maxBees != 3) {
+ nbttagcompound.setInt("Bukkit.MaxEntities", this.maxBees);
+ }
+ // CraftBukkit end
+ nbttagcompound.setInt("Bukkit.MaxEntities", this.maxBees); // CraftBukkit
return nbttagcompound;
}