mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 01:06:01 +01:00
Fix duplicate iron golem add
By: md_5 <git@md-5.net>
This commit is contained in:
parent
d8f2a7e7cc
commit
9782a90283
1 changed files with 1 additions and 6 deletions
|
@ -1,11 +1,6 @@
|
|||
--- a/net/minecraft/server/Village.java
|
||||
+++ b/net/minecraft/server/Village.java
|
||||
@@ -73,11 +73,11 @@
|
||||
BlockPosition blockposition1 = blockposition.a(this.a.random.nextInt(16) - 8, this.a.random.nextInt(6) - 3, this.a.random.nextInt(16) - 8);
|
||||
|
||||
if (this.a(blockposition1)) {
|
||||
- EntityIronGolem entityirongolem = (EntityIronGolem) EntityTypes.IRON_GOLEM.b(this.a, (NBTTagCompound) null, (IChatBaseComponent) null, (EntityHuman) null, blockposition1, false, false);
|
||||
+ EntityIronGolem entityirongolem = (EntityIronGolem) EntityTypes.IRON_GOLEM.spawnCreature(this.a, (NBTTagCompound) null, (IChatBaseComponent) null, (EntityHuman) null, blockposition1, false, false, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.VILLAGE_DEFENSE); // CraftBukkit
|
||||
@@ -77,7 +77,7 @@
|
||||
|
||||
if (entityirongolem != null) {
|
||||
if (entityirongolem.a((GeneratorAccess) this.a, false) && entityirongolem.a((IWorldReader) this.a)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue