forked from GeyserMC/Geyser
clone-remote-port option Updated (#1061)
* Added clone remote port option for bukkit, bungee and velocity * Added clone remote port option for sponge * Changed clone-remote-port description in config.yml * Update config.yml Updated config.yml to include a better description of the clone-remote-port option * Updated GeyserSpongePlugin An incorrect port was being edited before (remote instead of bedrock) * Update config.yml Co-authored-by: TeaNoDonuts <blackalegator@gmail.com>
This commit is contained in:
parent
600c54d89d
commit
427cb69a14
8 changed files with 30 additions and 0 deletions
|
@ -86,6 +86,8 @@ public interface GeyserConfiguration {
|
|||
|
||||
int getPort();
|
||||
|
||||
boolean isCloneRemotePort();
|
||||
|
||||
String getMotd1();
|
||||
|
||||
String getMotd2();
|
||||
|
|
|
@ -97,7 +97,9 @@ public abstract class GeyserJacksonConfiguration implements GeyserConfiguration
|
|||
public static class BedrockConfiguration implements IBedrockConfiguration {
|
||||
|
||||
private String address;
|
||||
@Setter
|
||||
private int port;
|
||||
private boolean isCloneRemotePort;
|
||||
|
||||
private String motd1;
|
||||
private String motd2;
|
||||
|
|
|
@ -13,6 +13,10 @@ bedrock:
|
|||
address: 0.0.0.0
|
||||
# The port that will listen for connections
|
||||
port: 19132
|
||||
# Some hosting services change your Java port everytime you open the server, and require the same port to be used for Bedrock.
|
||||
# This option makes the Bedrock port the same as the Java port every time you start the server.
|
||||
# This option is for the plugin version only.
|
||||
clone-remote-port: false
|
||||
# The MOTD that will be broadcasted to Minecraft: Bedrock Edition clients. Irrelevant if "passthrough-motd" is set to true
|
||||
motd1: "GeyserMC"
|
||||
motd2: "Another GeyserMC forced host."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue