# Region Management

Region owners and members with certain permissions can edit or access various properties of their regions via the GUI or commands.

To open the region GUI menu, use the `/region 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"] |
| 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 [Region Commands](/regions/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](/regions/permissions).

## :icon-phs-number-circle-three: Region Priority

If you use the Regions module along with the [Lands](/lands/about) or [Wilderness](/wilderness/about) modules, 
make sure that the [default priority](/regions/configuration/#region-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 region claim to another player, the target player's region [quotas](/regions/quotas) are checked.
If transferring the region 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
Region:
  Name:
    # Sets max. allowed length for region names.
    # Color & decoration tags do not count.
    Max-Length: 24
  Description:
    # Sets max. allowed length for region descriptions.
    # Color & decoration tags do not count.
    Max-Length: 48
  Priority:
    # Set min. allowed priority value for regions.
    Min-Value: 0
    # Set max. allowed priority value for regions.
    Max-Value: 10
```
