mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 21:47:42 -05:00
Fix getRuntimeRemapConfigurations() returning the wrong classpath. (#769)
This commit is contained in:
@@ -99,7 +99,7 @@ public interface LoomGradleExtensionAPI {
|
||||
}
|
||||
|
||||
default List<RemapConfigurationSettings> getRuntimeRemapConfigurations() {
|
||||
return getRemapConfigurations().stream().filter(element -> element.getOnCompileClasspath().get()).toList();
|
||||
return getRemapConfigurations().stream().filter(element -> element.getOnRuntimeClasspath().get()).toList();
|
||||
}
|
||||
|
||||
@ApiStatus.Experimental
|
||||
|
||||
Reference in New Issue
Block a user