Hide default bedrock port

This commit is contained in:
Fayne Aldan 2020-10-24 14:20:37 -06:00 committed by GitHub
parent ca5a929244
commit 4470646f8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,6 @@ public class Server {
@Override
public String toString() {
return address + (port != 25565 ? ":" + port : "");
return address + (port != (bedrock ? 19132 : 25565) ? ":" + port : "");
}
}