mirror of
https://github.com/unmojang/meta.git
synced 2025-09-24 03:31:03 -04:00
Also ignore 'patchy', the new Mojang netty hack
This commit is contained in:
parent
9bd311d31a
commit
95d82b51a7
@ -50,7 +50,12 @@ class GradleSpecifier:
|
||||
return self.group in ("org.lwjgl.lwjgl", "net.java.jinput", "net.java.jutils")
|
||||
|
||||
def isMojangNetty(self):
|
||||
return self.group == "com.mojang" and self.artifact == "netty"
|
||||
if self.group == "com.mojang":
|
||||
if self.artifact == "netty":
|
||||
return True
|
||||
if self.artifact == "patchy":
|
||||
return True
|
||||
return False
|
||||
|
||||
def __lt__(self, other):
|
||||
return self.toString() < other.toString()
|
||||
|
Loading…
x
Reference in New Issue
Block a user