# Land Management

Claim owners and members with certain permissions can edit or access various properties of their claims via the GUI or commands.

To open the claim GUI menu, use the `/land menu` command.

The following properties are available:

{.compact}
| Property | GUI | Command |
| ---      | --- | ---     |
| Display Name | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Description | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Priority | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Icon | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="danger" text="No" icon="phs-x-circle"] |
| Member Management | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="danger" text="No" icon="phs-x-circle"] |
| Ownership Transfer | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Rules Management | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="danger" text="No" icon="phs-x-circle"] |
| Teleport to Home | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="danger" text="No" icon="phs-x-circle"] |
| Set Home Location | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Split / Merge Land | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |
| Unclaim | [!badge variant="success" text="Yes" icon="phs-check-circle"] | [!badge variant="success" text="Yes" icon="phs-check-circle"] |

- For a complete list of available commands, see the [Land Commands](/lands/commands) page.
- For a complete list of claim permissions and their restrictions, see the [Claim Permissions](/core/member-roles) page.

!!!info
If you cannot access the GUI or command for a property, you either do not have permission or this feature is disabled.
!!!

## :icon-phs-tag-simple: Name & Description

You can prevent players from setting names and descriptions that are too short or too long by [configuring restrictions](#configuration).

These limits can be bypassed with certain [permissions](/lands/permissions).

## :icon-phs-number-circle-three: Land Priority

If you use the Lands module along with the [Regions](/regions/about) or [Wilderness](/wilderness/about) modules, make sure that the [default priority](/lands/configuration/#claim-defaults) and the [allowed priority range](#configuration) in the module settings match your expectations.

To learn more about how priority works, see our [Overlapping](/core/overlapping) page.

## :icon-phs-crown-simple: Ownership Transfer

When transferring a land claim to another player, the target player's land and chunk [quotas](/lands/quotas) are checked.
If transferring the land goes over the limits for that player, the transfer will be canceled.

!!!warning
Right now, there is no confirmation dialog when transferring ownership. Please be careful!
!!!

## :icon-phs-gear: Configuration

Configure restrictions for editing specific claim properties to prevent players from abusing or misusing them.

```yaml
Land:
  Name:
    # Sets max. allowed length for Land claim names.
    # Color & decoration tags do not count.
    Max-Length: 24
  Description:
    # Sets max. allowed length for Land claim descriptions.
    # Color & decoration tags do not count.
    Max-Length: 48
  Priority:
    # Set min. allowed priority value for Land claims.
    # Might be useful if you're using mixed system with Regions and/or Wilderness.
    Min-Value: 0
    # Set max. allowed priority value for Land claims.
    # Might be useful if you're using mixed system with Regions and/or Wilderness.
    Max-Value: 10
```
