diff options
Diffstat (limited to 'api/logic/minecraft/MinecraftProfile.h')
-rw-r--r-- | api/logic/minecraft/MinecraftProfile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/api/logic/minecraft/MinecraftProfile.h b/api/logic/minecraft/MinecraftProfile.h index 6e72afa1..8cb5331f 100644 --- a/api/logic/minecraft/MinecraftProfile.h +++ b/api/logic/minecraft/MinecraftProfile.h @@ -99,6 +99,7 @@ public: /* application of profile variables from patches */ void applyTraits(const QSet<QString> &traits); void applyTweakers(const QStringList &tweakers); void applyJarMods(const QList<LibraryPtr> &jarMods); + void applyMods(const QList<LibraryPtr> &jarMods); void applyLibrary(LibraryPtr library); void applyMainJar(LibraryPtr jar); void applyProblemSeverity(ProblemSeverity severity); @@ -179,6 +180,9 @@ private: /* data */ /// A list of jar mods. version files can add those. QList<LibraryPtr> m_jarMods; + /// the list of mods + QList<LibraryPtr> m_mods; + ProblemSeverity m_problemSeverity = ProblemSeverity::None; /* |