Add missing getHandlerList() in ClaimModifiedEvent (#387)

This commit is contained in:
Shane Schulte 2018-10-07 18:25:52 -04:00 committed by RoboMWM
parent 07d1112588
commit 5ebbc999dd

View File

@ -13,7 +13,12 @@ import org.bukkit.event.HandlerList;
*/
public class ClaimModifiedEvent extends Event {
private final HandlerList handlers = new HandlerList();
private static final HandlerList handlers = new HandlerList();
public static HandlerList getHandlerList() {
return handlers;
}
private final Claim claim;
private CommandSender modifier;