Remove debug statements

This commit is contained in:
Pim van der Loos 2020-11-25 10:32:55 +01:00
parent 6bdd7e37d4
commit 565ecabd2b
No known key found for this signature in database
GPG Key ID: C16F020ADAE6D5A8

View File

@ -62,7 +62,6 @@ public class EventHandlers implements Listener
@EventHandler(ignoreCancelled = true) @EventHandler(ignoreCancelled = true)
public void onPlayerDamage(EntityDamageEvent e) public void onPlayerDamage(EntityDamageEvent e)
{ {
System.out.println("onPlayerDamage!");
if (!(e.getEntity() instanceof Player)) if (!(e.getEntity() instanceof Player))
return; return;
@ -122,7 +121,6 @@ public class EventHandlers implements Listener
@EventHandler @EventHandler
public void onEquip(ArmorEquipEvent e) public void onEquip(ArmorEquipEvent e)
{ {
System.out.println("onEquip!");
if (e.getMethod().equals(ArmorEquipEvent.EquipMethod.DEATH) || if (e.getMethod().equals(ArmorEquipEvent.EquipMethod.DEATH) ||
e.getMethod().equals(ArmorEquipEvent.EquipMethod.BROKE)) e.getMethod().equals(ArmorEquipEvent.EquipMethod.BROKE))
return; return;