diff options
author | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-05-23 18:05:14 +0200 |
---|---|---|
committer | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2022-05-23 18:05:14 +0200 |
commit | a086a98cff6d5b327477fe7846495f1d392feebd (patch) | |
tree | 18f52aab6777c27a0e623921f863efb1c50fdb80 /src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java | |
parent | cc30afc4eb515c93b0d763e4347bee628c007372 (diff) | |
download | OneConfig-a086a98cff6d5b327477fe7846495f1d392feebd.tar.gz OneConfig-a086a98cff6d5b327477fe7846495f1d392feebd.tar.bz2 OneConfig-a086a98cff6d5b327477fe7846495f1d392feebd.zip |
OC-23 some things
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java')
-rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java b/src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java index c7e86cd..da069c5 100644 --- a/src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java +++ b/src/main/java/cc/polyfrost/oneconfig/config/data/Mod.java @@ -1,38 +1,36 @@ package cc.polyfrost.oneconfig.config.data; import cc.polyfrost.oneconfig.config.interfaces.Config; +import org.jetbrains.annotations.Nullable; import java.util.ArrayList; +import java.util.Objects; public class Mod { public final String name; public final ModType modType; - public final String creator; - public final String version; + public final String modIcon; public Config config; public final OptionPage defaultPage; public boolean isShortCut = false; - private static final ArrayList<Mod> mods = new ArrayList<>(); /** * @param name Friendly name of the mod * @param modType Type of the mod (for example ModType.QOL) - * @param creator Creator of the mod - * @param version Version of the mod + * @param modIcon path to icon of the mod (png or svg format) */ - public Mod(String name, ModType modType, String creator, String version) { - int i = 1; - for (Mod mod : mods) { - if (mod.name.startsWith(name)) { - ++i; - name = name + " " + i; - } - } + public Mod(String name, ModType modType, @Nullable String modIcon) { this.name = name; this.modType = modType; - this.creator = creator; - this.version = version; + this.modIcon = modIcon; this.defaultPage = new OptionPage(name, this); - mods.add(this); + } + + /** + * @param name Friendly name of the mod + * @param modType Type of the mod (for example ModType.QOL) + */ + public Mod(String name, ModType modType) { + this(name, modType, null); } } |