Hbm-s-Nuclear-Tech-GIT/com/hbm/entity/grenade/EntityGrenadeNuke.java
2017-07-23 12:10:52 +02:00

32 lines
740 B
Java

package com.hbm.entity.grenade;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.world.World;
public class EntityGrenadeNuke extends EntityGrenadeBase
{
private static final String __OBFID = "CL_00001722";
public int count = 2;
public EntityGrenadeNuke(World p_i1773_1_)
{
super(p_i1773_1_);
}
public EntityGrenadeNuke(World p_i1774_1_, EntityLivingBase p_i1774_2_)
{
super(p_i1774_1_, p_i1774_2_);
}
@Override
public void explode() {
if (!this.worldObj.isRemote)
{
//this.setDead();
this.worldObj.createExplosion(this, this.posX, this.posY, this.posZ, 30F, true);
}
}
}