mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-02 19:36:57 +03:00
NOISSUE fix liteloader uid where it is hardcoded hardcoded
This commit is contained in:
parent
643d74f66c
commit
dff307557b
3 changed files with 5 additions and 5 deletions
|
|
@ -510,7 +510,7 @@ bool OneSixInstance::setComponentVersion(const QString& uid, const QString& vers
|
|||
{
|
||||
settings()->set("ForgeVersion", version);
|
||||
}
|
||||
else if (uid == "com.liteloader")
|
||||
else if (uid == "com.mumfrey.liteloader")
|
||||
{
|
||||
settings()->set("LiteloaderVersion", version);
|
||||
}
|
||||
|
|
@ -536,7 +536,7 @@ QString OneSixInstance::getComponentVersion(const QString& uid) const
|
|||
{
|
||||
return settings()->get("ForgeVersion").toString();
|
||||
}
|
||||
else if(uid == "com.liteloader")
|
||||
else if(uid == "com.mumfrey.liteloader")
|
||||
{
|
||||
return settings()->get("LiteloaderVersion").toString();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ void OneSixProfileStrategy::loadUserPatches()
|
|||
}
|
||||
};
|
||||
loadSpecial("net.minecraftforge", 5);
|
||||
loadSpecial("com.liteloader", 10);
|
||||
loadSpecial("com.mumfrey.liteloader", 10);
|
||||
|
||||
// now add all the patches by user sort order
|
||||
ProfileUtils::PatchOrder userOrder;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue