diff --git a/com/hbm/entity/projectile/EntityMiniMIRV.java b/com/hbm/entity/projectile/EntityMiniMIRV.java index 80bd4f3ea..780c266a0 100644 --- a/com/hbm/entity/projectile/EntityMiniMIRV.java +++ b/com/hbm/entity/projectile/EntityMiniMIRV.java @@ -255,7 +255,7 @@ public class EntityMiniMIRV extends Entity implements IProjectile entity0.posY = this.posY; entity0.posZ = this.posZ; entity0.destructionRange = MainRegistry.fatmanRadius; - entity0.speed = 25; + entity0.speed = MainRegistry.blastSpeed; entity0.coefficient = 10.0F; this.worldObj.spawnEntityInWorld(entity0); diff --git a/com/hbm/entity/projectile/EntityMiniNuke.java b/com/hbm/entity/projectile/EntityMiniNuke.java index cae8cfc4a..85f036d61 100644 --- a/com/hbm/entity/projectile/EntityMiniNuke.java +++ b/com/hbm/entity/projectile/EntityMiniNuke.java @@ -242,11 +242,11 @@ public class EntityMiniNuke extends Entity implements IProjectile entity0.posY = this.posY; entity0.posZ = this.posZ; entity0.destructionRange = MainRegistry.fatmanRadius; - entity0.speed = 25; + entity0.speed = MainRegistry.blastSpeed; entity0.coefficient = 10.0F; this.worldObj.spawnEntityInWorld(entity0); - if(rand.nextInt(100) == 0) + if(rand.nextInt(100) >= 0) //edited { ExplosionParticleB.spawnMush(this.worldObj, (int)this.posX, (int)this.posY - 3, (int)this.posZ); } else {