Merge pull request #594 from Scrumplex/fix-support-split-natives
Support Mojang's new split natives
This commit is contained in:
commit
3806f23b02
@ -124,7 +124,7 @@ struct GradleSpecifier
|
|||||||
}
|
}
|
||||||
bool matchName(const GradleSpecifier & other) const
|
bool matchName(const GradleSpecifier & other) const
|
||||||
{
|
{
|
||||||
return other.artifactId() == artifactId() && other.groupId() == groupId();
|
return other.artifactId() == artifactId() && other.groupId() == groupId() && other.classifier() == classifier();
|
||||||
}
|
}
|
||||||
bool operator==(const GradleSpecifier & other) const
|
bool operator==(const GradleSpecifier & other) const
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user