package world.bentobox.bentobox.api.events.island; import java.util.UUID; import org.bukkit.Location; import org.bukkit.event.HandlerList; import org.eclipse.jdt.annotation.NonNull; import world.bentobox.bentobox.api.events.IslandBaseEvent; import world.bentobox.bentobox.database.objects.Island; /** * Fired when an a player enters a new island for the first time. * Called before join commands are run, money reset, etc. */ public class IslandNewIslandEvent extends IslandBaseEvent { private static final HandlerList handlers = new HandlerList(); @Override public @NonNull HandlerList getHandlers() { return getHandlerList(); } public static HandlerList getHandlerList() { return handlers; } IslandNewIslandEvent(Island island, UUID player, boolean admin, Location location) { // Final variables have to be declared in the constructor super(island, player, admin, location); } }