From fc7189f7342d8a1e9aa9a73bb1067fc9673e44e7 Mon Sep 17 00:00:00 2001 From: walterhiggins Date: Thu, 10 Jan 2013 00:14:45 +0000 Subject: [PATCH] removed unneeded comment --- bukkit-plugin/experimental/exploding-arrows.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/bukkit-plugin/experimental/exploding-arrows.js b/bukkit-plugin/experimental/exploding-arrows.js index 882bc93..8be0610 100644 --- a/bukkit-plugin/experimental/exploding-arrows.js +++ b/bukkit-plugin/experimental/exploding-arrows.js @@ -2,9 +2,6 @@ importPackage(org.bukkit.entity); bukkit.on("entity.ProjectileHitEvent", function(listener, event){ var projectile = event.entity; var world = projectile.world; - // - // only want arrows shot by players to explode - // if (projectile instanceof Arrow && projectile.shooter instanceof Player){ projectile.remove(); world.createExplosion(projectile.location,2.5);