Added McMMOPartyTeleportEvent for API usage - fires before a successful

teleportation would occur.
This commit is contained in:
GJ
2012-03-27 15:57:37 -04:00
parent f786c4db50
commit aaa63a7f5d
5 changed files with 56 additions and 6 deletions

View File

@ -21,14 +21,18 @@ public class McMMOPlayerSkillEvent extends PlayerEvent{
return skill;
}
public int getSkillLevel() {
return skillLevel;
}
/** Rest of file is required boilerplate for custom events **/
private static final HandlerList handlers = new HandlerList();
@Override
public HandlerList getHandlers() {
return handlers;
}
public static HandlerList getHandlerList() {
return handlers;
}