Explosion command
This commit is contained in:
parent
dc1ff4754c
commit
3a99ebcf02
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,7 @@ import net.minecraft.util.BlockPos;
|
|||
import net.minecraft.util.ChatComponentText;
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
import reborncore.api.fuel.FluidPowerManager;
|
||||
import reborncore.common.explosion.RebornExplosion;
|
||||
import techreborn.api.recipe.RecipeHandler;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -66,6 +67,10 @@ public class TechRebornDevCommand extends CommandBase {
|
|||
}
|
||||
}
|
||||
}
|
||||
}else if ("explode".equals(args[0])) {
|
||||
EntityPlayerMP playerMP = (EntityPlayerMP) sender;
|
||||
RebornExplosion explosion = new RebornExplosion(playerMP.getPosition(), playerMP.worldObj, 40);
|
||||
explosion.explode();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue