mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 14:21:08 +00:00
ignore mixins from common package in AwfulForgeHacks
This commit is contained in:
@@ -61,7 +61,8 @@ public final class AwfulForgeHacks {
|
|||||||
try(JarFile jar = getTerraJar()) {
|
try(JarFile jar = getTerraJar()) {
|
||||||
jar.stream()
|
jar.stream()
|
||||||
.forEach(jarEntry -> {
|
.forEach(jarEntry -> {
|
||||||
if(jarEntry.getName().startsWith("com/dfsek/terra/forge/mixin")) {
|
if(jarEntry.getName().startsWith("com/dfsek/terra/forge/mixin")
|
||||||
|
|| jarEntry.getName().startsWith("com/dfsek/terra/mod/mixin")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(jarEntry.getName().endsWith(".class")) {
|
if(jarEntry.getName().endsWith(".class")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user