2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityCreeper.java
|
|
|
|
+++ b/net/minecraft/server/EntityCreeper.java
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -1,5 +1,10 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.ExplosionPrimeEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class EntityCreeper extends EntityMonster {
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
private static final DataWatcherObject<Integer> a = DataWatcher.a(EntityCreeper.class, DataWatcherRegistry.b);
|
|
|
|
@@ -10,6 +15,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
private int maxFuseTicks = 30;
|
|
|
|
private int explosionRadius = 3;
|
2016-02-29 22:32:46 +01:00
|
|
|
private int bz = 0;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ private int record = -1; // CraftBukkit
|
|
|
|
|
|
|
|
public EntityCreeper(World world) {
|
|
|
|
super(world);
|
2016-02-29 22:32:46 +01:00
|
|
|
@@ -117,21 +123,41 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void die(DamageSource damagesource) {
|
|
|
|
- super.die(damagesource);
|
|
|
|
+ // super.die(damagesource); // CraftBukkit - Moved to end
|
2016-02-29 22:32:46 +01:00
|
|
|
if (this.world.getGameRules().getBoolean("doMobLoot")) {
|
|
|
|
if (damagesource.getEntity() instanceof EntitySkeleton) {
|
|
|
|
int i = Item.getId(Items.RECORD_13);
|
|
|
|
int j = Item.getId(Items.RECORD_WAIT);
|
|
|
|
int k = i + this.random.nextInt(j - i + 1);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
- this.a(Item.getById(k), 1);
|
|
|
|
+ // CraftBukkit start - Store record for now, drop in dropDeathLoot
|
|
|
|
+ // this.a(Item.getById(k), 1);
|
|
|
|
+ this.record = k;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
} else if (damagesource.getEntity() instanceof EntityCreeper && damagesource.getEntity() != this && ((EntityCreeper) damagesource.getEntity()).isPowered() && ((EntityCreeper) damagesource.getEntity()).canCauseHeadDrop()) {
|
|
|
|
((EntityCreeper) damagesource.getEntity()).setCausedHeadDrop();
|
|
|
|
- this.a(new ItemStack(Items.SKULL, 1, 4), 0.0F);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ // this.a(new ItemStack(Items.SKULL, 1, 4), 0.0F);
|
|
|
|
+ headDrop = new ItemStack(Items.SKULL, 1, 4);
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2016-02-29 22:32:46 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ super.die(damagesource); // CraftBukkit - Moved from above
|
|
|
|
+ }
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start - Whole method
|
|
|
|
+ @Override
|
|
|
|
+ protected void dropDeathLoot(boolean flag, int i) {
|
|
|
|
+ super.dropDeathLoot(flag, i);
|
2016-02-29 22:32:46 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // Drop a music disc?
|
|
|
|
+ if (this.record != -1) {
|
|
|
|
+ this.a(Item.getById(this.record), 1);
|
|
|
|
+ this.record = -1;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
+ // CraftBukkit end
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
public boolean B(Entity entity) {
|
2014-11-25 22:32:16 +01:00
|
|
|
return true;
|
2016-02-29 22:32:46 +01:00
|
|
|
@@ -155,8 +181,18 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
public void onLightningStrike(EntityLightning entitylightning) {
|
|
|
|
super.onLightningStrike(entitylightning);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (CraftEventFactory.callCreeperPowerEvent(this, entitylightning, org.bukkit.event.entity.CreeperPowerEvent.PowerCause.LIGHTNING).isCancelled()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.setPowered(true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPowered(boolean powered) {
|
2016-02-29 22:32:46 +01:00
|
|
|
this.datawatcher.set(EntityCreeper.b, Boolean.valueOf(true));
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2016-02-29 22:32:46 +01:00
|
|
|
+ // CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
protected boolean a(EntityHuman entityhuman, EnumHand enumhand, ItemStack itemstack) {
|
|
|
|
if (itemstack != null && itemstack.getItem() == Items.FLINT_AND_STEEL) {
|
|
|
|
@@ -177,9 +213,17 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
boolean flag = this.world.getGameRules().getBoolean("mobGriefing");
|
|
|
|
float f = this.isPowered() ? 2.0F : 1.0F;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
- this.aT = true;
|
2014-11-25 22:32:16 +01:00
|
|
|
- this.world.explode(this, this.locX, this.locY, this.locZ, (float) this.explosionRadius * f, flag);
|
|
|
|
- this.die();
|
2016-02-29 22:32:46 +01:00
|
|
|
+ // CraftBukkit start
|
2014-11-25 22:32:16 +01:00
|
|
|
+ ExplosionPrimeEvent event = new ExplosionPrimeEvent(this.getBukkitEntity(), this.explosionRadius * f, false);
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
+ if (!event.isCancelled()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
+ this.aT = true;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ this.world.createExplosion(this, this.locX, this.locY, this.locZ, event.getRadius(), event.getFire(), flag);
|
|
|
|
+ this.die();
|
|
|
|
+ } else {
|
|
|
|
+ fuseTicks = 0;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|