From 414d4a63d283386821ce43427b6ed0a0a00d4218 Mon Sep 17 00:00:00 2001 From: PepperCode1 <44146161+PepperCode1@users.noreply.github.com> Date: Sat, 20 Aug 2022 21:17:40 -0700 Subject: [PATCH] Updated Depending on Create (markdown) --- Depending-on-Create.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Depending-on-Create.md b/Depending-on-Create.md index 6f31f97..e07ae48 100644 --- a/Depending-on-Create.md +++ b/Depending-on-Create.md @@ -19,7 +19,7 @@ Non-release jars of Create and Flywheel... - are published every time there is a new commit. - do have a build number. -Even though release jars do not have a build number, they were still built from a commit, which also has a corresponding non-release jar. This is to say that each release jar is associated to a unique, near identical non-release jar on the Maven. +Even though release jars do not have a build number, they were still built from a commit, which also has a corresponding non-release jar. This is to say that each release jar is associated with a unique, near identical non-release jar on the Maven. It is not advisable to depend on a non-release jar that does not have a corresponding release jar as it may contain code that does not exist in a release jar. Your mod may not work in production if it uses such code since users will be using a release jar as opposed to the non-release jar you depended on during development. @@ -56,7 +56,7 @@ Add the following code to the `dependencies` block of your `build.gradle`. It de ```groovy dependencies { - implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:slim") { transitive = false } + implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:all") { transitive = false } implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}") compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}") } @@ -76,7 +76,7 @@ registrate_version = MC1.18.2-1.1.3 ### Optional Development Environment Dependencies -If you have added a development environment dependency on Create, developing your mod may be easier if these optional dependencies are also included since Create has optional integrations with them. +If you have added a development environment dependency on Create, developing your mod may be easier if these optional dependencies are also included since Create has integrations with them. #### JEI