mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-22 02:35:21 +01:00
Remove debug
This commit is contained in:
parent
28457aba52
commit
debcd2c331
@ -42,8 +42,6 @@ public class EntityInteractListener extends FlagListener {
|
||||
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
|
||||
public void onPlayerInteractEntity(PlayerInteractEntityEvent e)
|
||||
{
|
||||
System.out.println(e.getEventName());
|
||||
System.out.println(e.getRightClicked());
|
||||
Player p = e.getPlayer();
|
||||
Location l = e.getRightClicked().getLocation();
|
||||
|
||||
@ -84,7 +82,6 @@ public class EntityInteractListener extends FlagListener {
|
||||
}
|
||||
else if (e.getRightClicked() instanceof Villager && !(e.getRightClicked() instanceof WanderingTrader))
|
||||
{
|
||||
System.out.println("Villager trading");
|
||||
// Villager trading
|
||||
// Check naming and check trading
|
||||
this.checkIsland(e, p, l, Flags.TRADING);
|
||||
@ -107,7 +104,6 @@ public class EntityInteractListener extends FlagListener {
|
||||
}
|
||||
else if (e.getPlayer().getInventory().getItemInMainHand().getType().equals(Material.NAME_TAG))
|
||||
{
|
||||
System.out.println("name tag");
|
||||
// Name tags
|
||||
this.checkIsland(e, p, l, Flags.NAME_TAG);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user