13
0
geforkt von Mirrors/Velocity

Merge pull request #94 from PurpleIsEverything/master

Modinfo: Add getType and getModList methods.
Dieser Commit ist enthalten in:
Andrew Steinborn 2018-09-19 19:18:22 -04:00 committet von GitHub
Commit 08d596b76d
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

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