# Configuration

## Default configuration

```yaml
# #################################################################
# ┌─────────────────────────────────────────────────────────────┐ #
# │                            Worlds                           │ #
# └─────────────────────────────────────────────────────────────┘ #
# #################################################################

worlds:
  # World name
  world:
    # Enable/disable chat
    chat-enabled: true
    # Per World Chat
    pwc: false
    # Chat radius
    chat-radius:
      enabled: false
      radius: 10
      bypass-character: "!"
  world_nether:
    chat-enabled: true
    pwc: false
    chat-radius:
      enabled: false
      radius: 10
      bypass-character: "!"
  world_the_end:
    chat-enabled: true
    pwc: false
    chat-radius:
      enabled: false
      radius: 10
      bypass-character: "!"
  # Add more worlds
  #survival:
    #chat-enabled: false

# #################################################################
# ┌─────────────────────────────────────────────────────────────┐ #
# │                         Chat Bridges                        │ #
# └─────────────────────────────────────────────────────────────┘ #
# #################################################################

bridges:
  bridge1:
    enabled: false
    worlds:
      - "world"
      - "world_nether"
  # Add more bridges
```

## World configuration

* **chat-enabled:** Enable/disable the chat in this world
* **pwc:** Enable/disable Per World Chat in this world
* **chat-radius:**
  * **enabled:** Enable/disable chat radius in this world
  * **radius:** The blocks radius
  * **bypass-character:** If the message starts with the bypass character, it will bypass the chat radius

## Chat bridge

Creates groups of worlds where your chats are connected

Example:

<pre class="language-yaml"><code class="lang-yaml">bridges:
  survival:
    enabled: true
    worlds:
      - "survival"
      - "survival_nether"
      - "survival_the_end"
<strong>  skywars:
</strong>    enabled: true
    worlds:
      - "skywars"
      - "map1"
      - "map2"
      - "map3"
      - "map4"
</code></pre>
