13
0
geforkt von Mirrors/Velocity

Modinfo: Add getType and getModList methods.

Dieser Commit ist enthalten in:
PurpleIsEverything 2018-09-19 14:23:09 -06:00
Ursprung b7e6334324
Commit d218fbf1e0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4BB5E7264CEF9EFA

Datei anzeigen

@ -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<Mod> getModList() {
return modList;
}
}
public static class Mod {