Joseph Perthold

Results 2 issues of Joseph Perthold

Could you please make A Maven Depedency & Repository for this!

Add an Enum that tells you what type of event it is ```java public enum ACTION { EQUIP, UNEQUIP; } @EventHandler public void onArmourEquipEvent(ArmourEquipEvent event){ if (event.ACTION != UNEQUIP) return;...