2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockPumpkin.java
|
|
|
|
+++ b/net/minecraft/server/BlockPumpkin.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -3,6 +3,12 @@
|
2015-02-26 23:41:06 +01:00
|
|
|
import com.google.common.base.Predicate;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.util.BlockStateListPopulator;
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent;
|
|
|
|
+import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
2016-02-29 22:32:46 +01:00
|
|
|
public class BlockPumpkin extends BlockFacingHorizontal {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
private ShapeDetector snowGolemPart;
|
2016-06-09 03:43:49 +02:00
|
|
|
@@ -40,18 +46,25 @@
|
|
|
|
int i;
|
2014-11-25 22:32:16 +01:00
|
|
|
int j;
|
|
|
|
|
2016-06-09 03:43:49 +02:00
|
|
|
+ BlockStateListPopulator blockList = new BlockStateListPopulator(world.getWorld()); // CraftBukkit - Use BlockStateListPopulator
|
|
|
|
if (shapedetector_shapedetectorcollection != null) {
|
2014-11-25 22:32:16 +01:00
|
|
|
for (i = 0; i < this.getDetectorSnowGolem().b(); ++i) {
|
2015-02-26 23:41:06 +01:00
|
|
|
ShapeDetectorBlock shapedetectorblock = shapedetector_shapedetectorcollection.a(0, i, 0);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2015-07-30 08:56:52 +02:00
|
|
|
- world.setTypeAndData(shapedetectorblock.getPosition(), Blocks.AIR.getBlockData(), 2);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ // world.setTypeAndData(shapedetectorblock.d(), Blocks.AIR.getBlockData(), 2);
|
2015-07-30 08:56:52 +02:00
|
|
|
+ BlockPosition pos = shapedetectorblock.getPosition();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ blockList.setTypeId(pos.getX(), pos.getY(), pos.getZ(), 0);
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
EntitySnowman entitysnowman = new EntitySnowman(world);
|
2015-07-30 08:56:52 +02:00
|
|
|
BlockPosition blockposition1 = shapedetector_shapedetectorcollection.a(0, 2, 0).getPosition();
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
entitysnowman.setPositionRotation((double) blockposition1.getX() + 0.5D, (double) blockposition1.getY() + 0.05D, (double) blockposition1.getZ() + 0.5D, 0.0F, 0.0F);
|
|
|
|
- world.addEntity(entitysnowman);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (world.addEntity(entitysnowman, SpawnReason.BUILD_SNOWMAN)) {
|
|
|
|
+ blockList.updateList();
|
|
|
|
|
2015-02-26 23:41:06 +01:00
|
|
|
for (j = 0; j < 120; ++j) {
|
|
|
|
world.addParticle(EnumParticle.SNOW_SHOVEL, (double) blockposition1.getX() + world.random.nextDouble(), (double) blockposition1.getY() + world.random.nextDouble() * 2.5D, (double) blockposition1.getZ() + world.random.nextDouble(), 0.0D, 0.0D, 0.0D, new int[0]);
|
2016-06-09 03:43:49 +02:00
|
|
|
@@ -62,12 +75,17 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
world.update(shapedetectorblock1.getPosition(), Blocks.AIR, false);
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
+ } // CraftBukkit end
|
2016-06-09 03:43:49 +02:00
|
|
|
} else {
|
|
|
|
shapedetector_shapedetectorcollection = this.getDetectorIronGolem().a(world, blockposition);
|
|
|
|
if (shapedetector_shapedetectorcollection != null) {
|
|
|
|
for (i = 0; i < this.getDetectorIronGolem().c(); ++i) {
|
|
|
|
for (int k = 0; k < this.getDetectorIronGolem().b(); ++k) {
|
|
|
|
- world.setTypeAndData(shapedetector_shapedetectorcollection.a(i, k, 0).getPosition(), Blocks.AIR.getBlockData(), 2);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ // world.setTypeAndData(shapedetector_shapedetectorcollection.a(i, k, 0).getPosition(), Blocks.AIR.getBlockData(), 2);
|
|
|
|
+ BlockPosition pos = shapedetector_shapedetectorcollection.a(i, k, 0).getPosition();
|
|
|
|
+ blockList.setTypeId(pos.getX(), pos.getY(), pos.getZ(), 0);
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2016-06-09 03:43:49 +02:00
|
|
|
@@ -76,7 +94,9 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-06-09 03:43:49 +02:00
|
|
|
entityirongolem.setPlayerCreated(true);
|
|
|
|
entityirongolem.setPositionRotation((double) blockposition2.getX() + 0.5D, (double) blockposition2.getY() + 0.05D, (double) blockposition2.getZ() + 0.5D, 0.0F, 0.0F);
|
|
|
|
- world.addEntity(entityirongolem);
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
2015-02-26 23:41:06 +01:00
|
|
|
+ if (world.addEntity(entityirongolem, SpawnReason.BUILD_IRONGOLEM)) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ blockList.updateList();
|
|
|
|
|
2016-06-09 03:43:49 +02:00
|
|
|
for (j = 0; j < 120; ++j) {
|
|
|
|
world.addParticle(EnumParticle.SNOWBALL, (double) blockposition2.getX() + world.random.nextDouble(), (double) blockposition2.getY() + world.random.nextDouble() * 3.9D, (double) blockposition2.getZ() + world.random.nextDouble(), 0.0D, 0.0D, 0.0D, new int[0]);
|
|
|
|
@@ -90,6 +110,7 @@
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
+ } // CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|