diff --git a/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java b/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java index 069a5f7e8..0c9feffb3 100644 --- a/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java +++ b/api/src/main/java/com/velocitypowered/api/proxy/server/ServerPing.java @@ -312,6 +312,14 @@ public class ServerPing { this.type = Preconditions.checkNotNull(type, "type"); this.modList = ImmutableList.copyOf(modList); } + + public String getType() { + return type; + } + + public List getModList() { + return modList; + } } public static class Mod {