Class DefaultMainHub
Teleports a player to a location defined in configuration and plays a sound. If the player can not be teleported (for example, due to an invalid location), the player is kicked.
Correctly handles players wanting to leave the hub by forbidding them and teleporting them.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
join
(@NonNull org.bukkit.entity.Player player) Section join callback.boolean
leave
(@NonNull org.bukkit.OfflinePlayer player) Section leave callback.boolean
Section pre join callback, called to check whether the player should enter the section.boolean
Section pre leave callback, called to check whether the player can leave the section.Methods inherited from class fr.prodrivers.bukkit.commons.hubs.MainHub
getCapabilities
Methods inherited from class fr.prodrivers.bukkit.commons.sections.Section
add, addChildren, addParent, contains, contains, getChildSections, getFullName, getName, getParentSection, getParentsFullName, getPlayers, getSelectionUI, getSplitFullName, remove, removeChildren, removeParent
-
Constructor Details
-
DefaultMainHub
public DefaultMainHub()
-
-
Method Details
-
preJoin
public boolean preJoin(@NonNull org.bukkit.entity.Player player, Section targetSection, boolean fromParty) Description copied from class:Section
Section pre join callback, called to check whether the player should enter the section.This could be called at any point in the section's lifetime. The player is not guaranteed to actually enter the section.
The return value should be a guarantee that the player can enter the section.
-
join
public boolean join(@NonNull org.bukkit.entity.Player player) Description copied from class:Section
Section join callback. Should do the actions required when a player enters a section. -
preLeave
public boolean preLeave(@NonNull org.bukkit.OfflinePlayer player, Section targetSection, boolean fromParty) Description copied from class:Section
Section pre leave callback, called to check whether the player can leave the section.This could be called at any point in the section's lifetime. The player is not guaranteed to actually leave the section. This can be called even if the player is not actually in the section (ex: called during the check pass of section tree traversal)
The return value should be a guarantee that the player can leave the section.
-
leave
public boolean leave(@NonNull org.bukkit.OfflinePlayer player) Description copied from class:Section
Section leave callback. Should do the actions required when a player leaves a section.
-