NOISSUE remove OneSixLibrary
This commit is contained in:
parent
f6b2ccb110
commit
71e4b147ec
13 changed files with 55 additions and 134 deletions
|
@ -233,9 +233,9 @@ bool MinecraftProfile::revertToVanilla()
|
|||
return true;
|
||||
}
|
||||
|
||||
QList<std::shared_ptr<OneSixLibrary> > MinecraftProfile::getActiveNormalLibs()
|
||||
QList<std::shared_ptr<RawLibrary> > MinecraftProfile::getActiveNormalLibs()
|
||||
{
|
||||
QList<std::shared_ptr<OneSixLibrary> > output;
|
||||
QList<std::shared_ptr<RawLibrary> > output;
|
||||
for (auto lib : libraries)
|
||||
{
|
||||
if (lib->isActive() && !lib->isNative())
|
||||
|
@ -254,9 +254,9 @@ QList<std::shared_ptr<OneSixLibrary> > MinecraftProfile::getActiveNormalLibs()
|
|||
return output;
|
||||
}
|
||||
|
||||
QList<std::shared_ptr<OneSixLibrary> > MinecraftProfile::getActiveNativeLibs()
|
||||
QList<std::shared_ptr<RawLibrary> > MinecraftProfile::getActiveNativeLibs()
|
||||
{
|
||||
QList<std::shared_ptr<OneSixLibrary> > output;
|
||||
QList<std::shared_ptr<RawLibrary> > output;
|
||||
for (auto lib : libraries)
|
||||
{
|
||||
if (lib->isActive() && lib->isNative())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue