Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit 1431e54

Browse files
committed
1.20.x
1 parent 76548fc commit 1431e54

File tree

6 files changed

+23
-29
lines changed

6 files changed

+23
-29
lines changed

build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
2-
id 'fabric-loom' version '1.2-SNAPSHOT'
3-
id "io.github.juuxel.loom-quiltflower" version "1.+"
2+
id 'fabric-loom' version '1.3-SNAPSHOT'
3+
id "io.github.juuxel.loom-vineflower" version "1.+"
4+
id "io.github.p03w.machete" version "1.1.4"
45
id 'maven-publish'
56
}
67

@@ -19,16 +20,20 @@ repositories {
1920
maven { url = "https://maven.shedaniel.me/" } // Cloth Config, REI
2021
maven { url = "https://jitpack.io/" } // Mixin Extras, Fabric ASM
2122
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
23+
24+
maven { url = "https://maven.quiltmc.org/repository/release" } // QM
25+
maven { url = "https://maven.parchmentmc.org" } // Parchment
2226
}
2327

2428
dependencies {
2529
minecraft "com.mojang:minecraft:${project.minecraft_version}"
26-
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
30+
mappings "org.quiltmc:quilt-mappings:${project.qm_version}:intermediary-v2"
2731
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2832
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
2933

3034
modImplementation("com.simibubi.create:create-fabric-${project.minecraft_version}:${project.create_version}") {
3135
exclude(Map.of("module", "forge-config-api-port-fabric-547434"))
36+
exclude(group: "io.github.fabricators_of_create")
3237
}
3338
modImplementation "io.github.fabricators_of_create.Porting-Lib:Porting-Lib:${project.portinglib_version}"
3439
modLocalRuntime "maven.modrinth:forge-config-api-port:${project.forgeconfigapiport_version}"

gradle.properties

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@ org.gradle.parallel=true
44

55
# Fabric Properties
66
# check these on https://fabricmc.net/develop
7-
minecraft_version=1.19.2
8-
yarn_mappings=1.19.2+build.18
7+
minecraft_version=1.20.1
8+
# https://lambdaurora.dev/tools/import_quilt.html
9+
qm_version = 1.20.1+build.23
910
loader_version=0.14.17
1011

1112
# Mod Properties
12-
mod_version=0.1.5-create0.5.1-mc1.19.x
13+
mod_version=0.1.0-create0.5.1-mc1.20.x
1314
maven_group=ho.artisan.createreibugfix
1415
archives_base_name=CreateFabricREIBugFix
1516

1617
# Dependencies
17-
fabric_version=0.67.0+1.19.2
18+
fabric_version=0.88.1+1.20.1
1819

19-
rei_version=9.1.580
20-
forgeconfigapiport_version=4.2.11
21-
create_version=0.5.1.b-1053+1.19.2
22-
portinglib_version=2.1.1032+1.19.2
20+
rei_version=12.0.652
21+
forgeconfigapiport_version=v8.0.0-1.20.1-Fabric
22+
create_version=0.5.1-d-build.1161+mc1.20.1
23+
portinglib_version=2.1.1127+1.20
2324
conditionalmixin_version=v0.3.2

src/main/java/ho/artisan/createreibugfix/inject/CreateDisplayInject.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
@ApiStatus.Internal
4747
public final class CreateDisplayInject {
4848
/**
49-
{@link ProcessingRecipe}{@link SequencedAssemblyRecipe}的多物品输出和流体输入输出也加入{@link me.shedaniel.rei.api.common.display.Display}的输入输出。
50-
@param args {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier, List, List)}的参数
51-
@param recipe0 {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier)}的参数{@code recipe}
52-
@param id {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier)}的参数{@code id}
49+
Add the multi-item outputs and fluid inputs and outputs of {@link ProcessingRecipe} and {@link SequencedAssemblyRecipe} to the inputs and outputs of {@link me.shedaniel.rei.api.common.display}.
50+
@param args arguments for {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier, List, List)}
51+
@param recipe0 arguments for {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier)} {@code recipe}
52+
@param id arguments for {@link CreateDisplay#CreateDisplay(Recipe, CategoryIdentifier)} {@code id}
5353
*/
5454
public static void improveStupidDisplay(Args args, Recipe<?> recipe0, CategoryIdentifier<CreateDisplay<Recipe<?>>> id) {
5555
if (recipe0 instanceof ProcessingRecipe<?> recipe) {
@@ -69,8 +69,4 @@ public static void improveStupidDisplay(Args args, Recipe<?> recipe0, CategoryId
6969
args.set(3, outputs);
7070
}
7171
}
72-
73-
private CreateDisplayInject() {
74-
75-
}
7672
}

src/main/java/ho/artisan/createreibugfix/inject/SequencedAssemblyRecipeInject.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,4 @@ static List<ProcessingOutput> getResultPool(SequencedAssemblyRecipe self) {
3838
}
3939
List<ProcessingOutput> getResultPool();
4040
}
41-
42-
private SequencedAssemblyRecipeInject() {
43-
44-
}
4541
}

src/main/java/ho/artisan/createreibugfix/utils/REICreateUtils.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,4 @@ public static Slot slotOf(Point pos, Collection<EntryStack<?>> entries) {
180180
}
181181
return slot;
182182
}
183-
184-
private REICreateUtils() {
185-
186-
}
187183
}

src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
],
2525
"depends": {
2626
"fabricloader": "*",
27-
"fabric-api": "*",
28-
"minecraft": "1.19.x",
27+
"fabric": "*",
28+
"minecraft": "1.20.x",
2929
"java": ">=17",
3030
"roughlyenoughitems": "*",
3131
"create": "*"

0 commit comments

Comments
 (0)