Class DefaultMainHub


@Singleton public class DefaultMainHub extends MainHub
Default implementation of main hub.

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 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.

      Overrides:
      preJoin in class MainHub
      Parameters:
      player - Player that should join the section
      targetSection - Section where the player will end up
      fromParty - Indicate that the process was started by the party owner
      Returns:
      true The user is authorized to 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.
      Overrides:
      join in class MainHub
      Parameters:
      player - Player that joins the section
      Returns:
      true Continue the section enter process
    • 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.

      Overrides:
      preLeave in class MainHub
      Parameters:
      player - Player that should leave the section
      targetSection - Section where the player will end up
      fromParty - Indicate that the process was started by the party owner
      Returns:
      true The user is authorized to 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.
      Overrides:
      leave in class MainHub
      Parameters:
      player - Player that leaves the section
      Returns:
      true Continue the section enter process