mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-02-05 06:51:37 +01:00
Make /nuke drop tnt from a more reasonable height.
This commit is contained in:
parent
45cf2ae960
commit
e5e81eda72
@ -51,7 +51,7 @@ public class Commandnuke extends EssentialsCommand
|
|||||||
{
|
{
|
||||||
for (int z = -10; z <= 10; z += 5)
|
for (int z = -10; z <= 10; z += 5)
|
||||||
{
|
{
|
||||||
final Location tntloc = new Location(world, loc.getBlockX() + x, world.getMaxHeight(), loc.getBlockZ() + z);
|
final Location tntloc = new Location(world, loc.getBlockX() + x, world.getHighestBlockYAt(loc) + 64, loc.getBlockZ() + z);
|
||||||
final TNTPrimed tnt = world.spawn(tntloc, TNTPrimed.class);
|
final TNTPrimed tnt = world.spawn(tntloc, TNTPrimed.class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user