diff --git a/README.md b/README.md index 037dd6e..45142f0 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,17 @@ The installation process is simple. I recommend you to set parameter `debugLevel` to `0` when you finish testing server and run it into production. This will disable some useless for production information in the console. +### About player info forwarding + +The server supports player info forwarding from the proxy. There are two type of info forwarding: + +* LEGACY - The BungeeCord IP forwarding +* MODERN - Velocity native info forwarding type + +If you use **BungeeCord**, or Velocity with LEGACY forwarding, just set this type in the config. +If you use **Velocity** with modern info forwarding, set this type and paste secret key from Velocity +config into `secret` field. + ### Contributing You can create pull request, if you found some bug, optimization ability, or you wanna add some functional, diff --git a/build.gradle b/build.gradle index d3f24ce..4342e85 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'ru.nanit' -version '1.1' +version '1.2' repositories { mavenCentral() @@ -12,9 +12,9 @@ repositories { dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' - compile group: 'org.yaml', name: 'snakeyaml', version: '1.27' compile files('libs/napi-configurate-yaml-1.0.jar') - compile "io.netty:netty-handler:4.1.54.Final" + compile group: 'org.yaml', name: 'snakeyaml', version: '1.27' + compile group: 'io.netty', name: 'netty-handler', version: '4.1.54.Final' compile group: 'net.kyori', name: 'adventure-nbt', version: '4.1.1' }