-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update gradle wrapper * update buildscript and dependencies * fix mixins * rework item groups and registration * misc fixes and use constant for mod ID * fix materials * group vanilla materials with their tools * update loom * move tags into their own classes, merge peridots * fix item class * remove libcd dependency declaration * add datagen * add fix for loom bug * add recipe generation * update emi integration * enable deprecated api modules at runtime EMI needs this to not crash * refactor crook emi recipe * start on datapack migration * rest of datapack migration * add contributor information * Polish the port * Removed unused BetterEnd crooks the textures were nice :( * whoops * empty line * Remove Industrial Revolution integration That mod no longer has the vanilla tool sets that it had before; watch the mod get smaller! * Update the Fluix Crook recipe * Nuke jitpack.yml * Prepare for merge * This is more like it --------- Co-authored-by: Ennui Langeweile <[email protected]>
- Loading branch information
Showing
139 changed files
with
605 additions
and
1,447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ classes/ | |
# Quilt Loom | ||
run/ | ||
|
||
# Fabric Data Generation | ||
src/main/generated/ | ||
|
||
# Eclipse | ||
*.launch | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
[versions] | ||
# The latest versions are available at https://lambdaurora.dev/tools/import_quilt.html | ||
minecraft = "1.19.2" | ||
quilt_mappings = "1.19.2+build.21" | ||
quilt_loader = "0.17.4" | ||
minecraft = "1.20.1" | ||
quilt_mappings = "1.20.1+build.23" | ||
quilt_loader = "0.22.1-beta.4" | ||
|
||
quilted_fabric_api = "4.0.0-beta.16+0.64.0-1.19.2" | ||
libcd = "946618669f" | ||
emi = "0.4.0+1.19" | ||
quilted_fabric_api = "7.4.0+0.90.0-1.20.1" | ||
emi = "1.0.28+1.20.1" | ||
|
||
[libraries] | ||
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" } | ||
quilt_mappings = { module = "org.quiltmc:quilt-mappings", version.ref = "quilt_mappings" } | ||
quilt_loader = { module = "org.quiltmc:quilt-loader", version.ref = "quilt_loader" } | ||
|
||
quilted_fabric_api = { module = "org.quiltmc.quilted-fabric-api:quilted-fabric-api", version.ref = "quilted_fabric_api" } | ||
libcd = { module = "com.github.EnnuiL:LibCD", version.ref = "libcd" } | ||
emi = { module = "dev.emi:emi", version.ref = "emi" } | ||
quilted_fabric_api_deprecated = { module = "org.quiltmc.quilted-fabric-api:quilted-fabric-api-deprecated", version.ref = "quilted_fabric_api" } | ||
|
||
emi = { module = "dev.emi:emi-fabric", version.ref = "emi" } | ||
|
||
# If you have multiple similar dependencies, you can declare a dependency bundle and reference it on the build script with "libs.bundles.example". | ||
[bundles] | ||
quilted_fabric_api = ["quilted_fabric_api", "quilted_fabric_api_deprecated"] | ||
|
||
[plugins] | ||
quilt_loom = { id = "org.quiltmc.loom", version = "1.0.+" } | ||
machete = { id = "io.github.p03w.machete", version = "1.2.+" } | ||
quilt_loom = { id = "org.quiltmc.loom", version = "1.4.+" } |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
src/main/java/io/github/ennuil/crooked_crooks/CrookedCrooksConditions.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.