3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Made iron golems fire CreatureSpawn event. Fixes BUKKIT-1089

Dieser Commit ist enthalten in:
EvilSeph 2012-03-08 21:57:46 -05:00
Ursprung f5ce8627c6
Commit ecb00bba85
2 geänderte Dateien mit 7 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,9 @@
package net.minecraft.server; package net.minecraft.server;
import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit // CraftBukkit start
import org.bukkit.event.block.BlockRedstoneEvent;
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
// CraftBukkit end
public class BlockPumpkin extends BlockDirectional { public class BlockPumpkin extends BlockDirectional {
@ -44,7 +47,7 @@ public class BlockPumpkin extends BlockDirectional {
EntitySnowman entitysnowman = new EntitySnowman(world); EntitySnowman entitysnowman = new EntitySnowman(world);
entitysnowman.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F); entitysnowman.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F);
world.addEntity(entitysnowman, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.BUILD_SNOWMAN); // CraftBukkit world.addEntity(entitysnowman, SpawnReason.BUILD_SNOWMAN); // CraftBukkit
world.update(i, j, k, 0); world.update(i, j, k, 0);
world.update(i, j - 1, k, 0); world.update(i, j - 1, k, 0);
world.update(i, j - 2, k, 0); world.update(i, j - 2, k, 0);
@ -73,7 +76,7 @@ public class BlockPumpkin extends BlockDirectional {
entityirongolem.b(true); entityirongolem.b(true);
entityirongolem.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F); entityirongolem.setPositionRotation((double) i + 0.5D, (double) j - 1.95D, (double) k + 0.5D, 0.0F, 0.0F);
world.addEntity(entityirongolem); world.addEntity(entityirongolem, SpawnReason.BUILD_IRONGOLEM);
for (int i1 = 0; i1 < 120; ++i1) { for (int i1 = 0; i1 < 120; ++i1) {
world.a("snowballpoof", (double) i + world.random.nextDouble(), (double) (j - 2) + world.random.nextDouble() * 3.9D, (double) k + world.random.nextDouble(), 0.0D, 0.0D, 0.0D); world.a("snowballpoof", (double) i + world.random.nextDouble(), (double) (j - 2) + world.random.nextDouble() * 3.9D, (double) k + world.random.nextDouble(), 0.0D, 0.0D, 0.0D);

Datei anzeigen

@ -42,7 +42,7 @@ public class Village {
EntityIronGolem entityirongolem = new EntityIronGolem(this.world); EntityIronGolem entityirongolem = new EntityIronGolem(this.world);
entityirongolem.setPosition(vec3d.a, vec3d.b, vec3d.c); entityirongolem.setPosition(vec3d.a, vec3d.b, vec3d.c);
this.world.addEntity(entityirongolem); this.world.addEntity(entityirongolem, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.VILLAGE_DEFENSE); // CraftBukkit
++this.j; ++this.j;
} }
} }