fixed TNT not being able to hit anyone

This commit is contained in:
Chiss 2014-08-09 22:16:49 +10:00
parent a34ce75252
commit e558796268

View File

@ -51,7 +51,7 @@ public class ItemTNT extends ItemGadget
HashMap<Player, Double> players = UtilPlayer.getInRadius(event.getLocation(), 10); HashMap<Player, Double> players = UtilPlayer.getInRadius(event.getLocation(), 10);
for (Player player : players.keySet()) for (Player player : players.keySet())
{ {
if (!Manager.collideEvent(this, player)) if (Manager.collideEvent(this, player))
continue; continue;
double mult = players.get(player); double mult = players.get(player);