@@ -10,12 +10,12 @@
|
||||
public int yield = 1;
|
||||
|
||||
public EntityLargeFireball(World world) {
|
||||
super(world);
|
||||
super(EntityTypes.FIREBALL, world, 1.0F, 1.0F);
|
||||
+ isIncendiary = this.world.getGameRules().getBoolean("mobGriefing"); // CraftBukkit
|
||||
}
|
||||
|
||||
public EntityLargeFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
|
||||
super(world, entityliving, d0, d1, d2);
|
||||
super(EntityTypes.FIREBALL, entityliving, d0, d1, d2, world, 1.0F, 1.0F);
|
||||
+ isIncendiary = this.world.getGameRules().getBoolean("mobGriefing"); // CraftBukkit
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
this.die();
|
||||
}
|
||||
|
||||
@@ -39,7 +51,8 @@
|
||||
@@ -35,7 +47,8 @@
|
||||
public void a(NBTTagCompound nbttagcompound) {
|
||||
super.a(nbttagcompound);
|
||||
if (nbttagcompound.hasKeyOfType("ExplosionPower", 99)) {
|
||||
|
||||
Reference in New Issue
Block a user