mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-13 20:22:13 +00:00
Allow overriding the order in which patches are applied
This commit is contained in:
@@ -81,6 +81,15 @@ bool OneSixVersion::canRemove(const int index) const
|
||||
return false;
|
||||
}
|
||||
|
||||
QString OneSixVersion::versionFileId(const int index) const
|
||||
{
|
||||
if (index < 0 || index >= versionFiles.size())
|
||||
{
|
||||
return QString();
|
||||
}
|
||||
return versionFiles.at(index).id;
|
||||
}
|
||||
|
||||
bool OneSixVersion::remove(const int index)
|
||||
{
|
||||
if (canRemove(index))
|
||||
|
||||
Reference in New Issue
Block a user