diff --git a/README.md b/README.md index 95c59c8fd..847cf1217 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ modImplementation "net.fabricmc.fabric-api:fabric-api:FABRIC_API_VERSION" modImplementation("net.fabricmc.fabric-api:fabric-api:FABRIC_API_VERSION") ``` -Alternatively, modules from Fabric API can be specified individually as shown below: +Alternatively, modules from Fabric API can be specified individually as shown below (including module jar to your mod jar): ### Groovy DSL @@ -54,7 +54,7 @@ Set<String> apiModules = [ // Add each module as a dependency apiModules.forEach { - modImplementation(fabricApi.module(it, FABRIC_API_VERSION)) + include(modImplementation(fabricApi.module(it, FABRIC_API_VERSION))) } ```