Craftbukkit 689 / MC 1.5

Testing only, do not release until 689 or higher is recommended

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1247 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-04-21 09:33:25 +00:00
parent 8ea366d8bb
commit f1f3d2fec5
9 changed files with 14 additions and 14 deletions

View file

@ -33,7 +33,7 @@ public class Commandantioch extends EssentialsCommand
World world = ((CraftWorld)user.getWorld()).getHandle();
loc = new TargetBlock(user).getTargetBlock().getLocation();
EntityTNTPrimed tnt = new EntityTNTPrimed(world, loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
world.a(tnt);
world.a(tnt, "random.fuse", 1.0F, 1.0F);
world.addEntity(tnt);
world.makeSound(tnt, "random.fuse", 1.0F, 1.0F);
}
}