mirror of
https://github.com/GeyserMC/GeyserConnect.git
synced 2025-06-26 14:15:22 +02:00
Hide default bedrock port (#11)
This commit is contained in:
parent
ca5a929244
commit
34a5170f9b
1 changed files with 1 additions and 1 deletions
|
@ -53,6 +53,6 @@ public class Server {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return address + (port != 25565 ? ":" + port : "");
|
return address + (port != (bedrock ? 19132 : 25565) ? ":" + port : "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue