diff --git a/docs/velocity/admin/getting-started/forwarding.md b/docs/velocity/admin/getting-started/forwarding.md index d3fa6ba7..1b2549f0 100644 --- a/docs/velocity/admin/getting-started/forwarding.md +++ b/docs/velocity/admin/getting-started/forwarding.md @@ -17,10 +17,20 @@ UUIDs and skins. Velocity supports three forwarding formats: :::info -You may choose between only one of these forwarding formats. It is not currently possible to "mix -and match" forwarding modes or use all the forwarding formats together. In general, if you are -supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding, else you -must use BungeeCord forwarding. +It is now possible to configure forwarding individually for each server. +In general, if you are supporting clients using Minecraft 1.13 and newer only, use Velocity modern forwarding. +For older versions, consider using BungeeGuard for added security; else you must use BungeeCord forwarding. + +Example: + + ```toml + lobby = "127.0.0.1:30066" + ``` + Becomes: + + ```toml + lobby = { address = "127.0.0.1:30066", forwarding-mode = "MODERN" } + ``` :::