Skip to content

Commit

Permalink
Fix ShootCommand.java.
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed May 19, 2013
1 parent 442957f commit ca2e76f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -182,7 +182,7 @@ public void run() {
fireworkMeta.setPower(2);
firework.setFireworkMeta(fireworkMeta);
}
if ((Float) scriptEntry.getObject("explosion") > 0)
if ((Double) scriptEntry.getObject("explosion") > 0)
{
entity.getWorld().createExplosion(entity.getLocation(),
(Float) scriptEntry.getObject("explosion"));
Expand Down

0 comments on commit ca2e76f

Please sign in to comment.