mirror of
https://github.com/GeyserMC/Floodgate.git
synced 2025-12-19 14:59:20 +00:00
Fixed a mistake in the config and removed an unused dependency
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
# The public key should be used for the Geyser(s) and the private key for the Floodgate(s)
|
||||
key-file-name: key.pem
|
||||
|
||||
# Should Velocity send the bedrock player data to the servers it is connecting to?
|
||||
# Should Bungeecord send the bedrock player data to the servers it is connecting to?
|
||||
# This requires Floodgate to be installed on the servers.
|
||||
# You'll get kicked if you don't use the plugin. The default value is false because of it
|
||||
send-floodgate-data: false
|
||||
|
||||
@@ -24,30 +24,24 @@
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.velocitypowered</groupId>
|
||||
<artifactId>velocity-api</artifactId>
|
||||
<version>${velocity-version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.javassist</groupId>
|
||||
<artifactId>javassist</artifactId>
|
||||
<version>3.26.0-GA</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.openhft</groupId>
|
||||
<artifactId>compiler</artifactId>
|
||||
<version>2.3.5</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
<artifactId>netty-all</artifactId>
|
||||
<version>4.1.45.Final</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.velocitypowered</groupId>
|
||||
<artifactId>velocity-api</artifactId>
|
||||
<version>${velocity-version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.geysermc</groupId>
|
||||
<artifactId>floodgate-common</artifactId>
|
||||
|
||||
17
velocity/src/main/resources/config.yml
Normal file
17
velocity/src/main/resources/config.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
# In Floodgate bedrock player data is send encrypted
|
||||
# The following value should point to the key Floodgate generated.
|
||||
# The public key should be used for the Geyser(s) and the private key for the Floodgate(s)
|
||||
key-file-name: key.pem
|
||||
|
||||
# Should Velocity send the bedrock player data to the servers it is connecting to?
|
||||
# This requires Floodgate to be installed on the servers.
|
||||
# You'll get kicked if you don't use the plugin. The default value is false because of it
|
||||
send-floodgate-data: false
|
||||
|
||||
disconnect:
|
||||
# The disconnect message Geyser users should get when connecting
|
||||
# to the server with an invalid key
|
||||
invalid-key: Please connect through the official Geyser
|
||||
# The disconnect message Geyser users should get when connecting
|
||||
# to the server with the correct key but not with the correct data format
|
||||
invalid-arguments-length: Expected {0} arguments, got {1}. Is Geyser up-to-date?
|
||||
Reference in New Issue
Block a user