Fix AW field remapping (#434)
* Fix AW field remapping * Fix by updating TR instead * Fix checkstyle so that tests rundev/0.11
parent
ad5ac78e06
commit
f26e9e2c7b
|
@ -77,7 +77,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
// tinyfile management
|
// tinyfile management
|
||||||
implementation ('net.fabricmc:tiny-remapper:0.4.2')
|
implementation ('net.fabricmc:tiny-remapper:0.4.3')
|
||||||
implementation ('net.fabricmc:tiny-mappings-parser:0.3.0+build.17')
|
implementation ('net.fabricmc:tiny-mappings-parser:0.3.0+build.17')
|
||||||
|
|
||||||
implementation 'net.fabricmc:access-widener:1.0.0'
|
implementation 'net.fabricmc:access-widener:1.0.0'
|
||||||
|
|
|
@ -114,6 +114,7 @@ public final class LoomTasks {
|
||||||
|
|
||||||
project.afterEvaluate(p -> {
|
project.afterEvaluate(p -> {
|
||||||
MappingsProviderImpl mappingsProvider = extension.getMappingsProvider();
|
MappingsProviderImpl mappingsProvider = extension.getMappingsProvider();
|
||||||
|
|
||||||
if (mappingsProvider.mappedProvider == null) {
|
if (mappingsProvider.mappedProvider == null) {
|
||||||
// If this is ever null something has gone badly wrong,
|
// If this is ever null something has gone badly wrong,
|
||||||
// for some reason for another this afterEvaluate still gets called when something has gone badly
|
// for some reason for another this afterEvaluate still gets called when something has gone badly
|
||||||
|
|
Loading…
Reference in New Issue