From ce03cf4863f153b82c857eb38ebebb8834dde4b4 Mon Sep 17 00:00:00 2001 From: Christopher Martin Date: Sun, 16 Oct 2016 16:42:25 -0700 Subject: [PATCH] Remove accidental debug messages --- .../projectkorra/waterbending/HealingWaters.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/com/projectkorra/projectkorra/waterbending/HealingWaters.java b/src/com/projectkorra/projectkorra/waterbending/HealingWaters.java index 84e778e2..fbc053d2 100644 --- a/src/com/projectkorra/projectkorra/waterbending/HealingWaters.java +++ b/src/com/projectkorra/projectkorra/waterbending/HealingWaters.java @@ -2,7 +2,6 @@ package com.projectkorra.projectkorra.waterbending; import java.util.HashMap; -import org.bukkit.Bukkit; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.block.Block; @@ -143,16 +142,13 @@ public class HealingWaters extends HealingAbility { } public void click() { - Bukkit.broadcastMessage("Click!"); Entity target = GeneralMethods.getTargetedEntity(player, range); if (target != null && !target.equals(this.target) && target instanceof LivingEntity) { hasReached = false; this.target = (LivingEntity) target; - Bukkit.broadcastMessage("New Target Found!"); } else if (target != null && target.equals(this.target) && target instanceof LivingEntity) { hasReached = false; this.target = null; - Bukkit.broadcastMessage("Target Removed!"); } } @@ -346,4 +342,4 @@ public class HealingWaters extends HealingAbility { return location; } -} \ No newline at end of file +}