Skip to content

Commit 6f9980f

Browse files
committed
Port to 1.21
- Trading stations now use components for storing trades and owners - Watering cans now use components for storing water and fertiliser levels - Kitchen sinks now accept any `#c:buckets/empty` - Chimneys now accept any `#c:tools/igniter` - Cobblestone chimneys now accept any `#c:cobblestones` - Nether wart coffee now accepts any `#c:buckets/water` Fixed bugs: SeatBlock.onUse: SofaBlock.onUseWithItem: fix returning SUCCESS on the server [Fabric] fix kitchen sinks consuming fluids from items in creative Fixed regressions from Java port: Brewers not rendering their fluids check_trading_station_owner using || instead of &&
1 parent 797de00 commit 6f9980f

File tree

8,039 files changed

+46811
-47857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,039 files changed

+46811
-47857
lines changed

build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ subprojects {
9191
}
9292
}
9393

94-
// For REI.
94+
// For Architectury and REI.
9595
maven {
96-
name = "shedaniel"
97-
url = uri("https://maven.shedaniel.me")
96+
name = "Architectury"
97+
url = uri("https://maven.architectury.dev")
9898
}
9999

100100
// TerraformersMC maven for Mod Menu and EMI.
@@ -125,10 +125,10 @@ subprojects {
125125
// and so the Kotlin accessor method for it isn't generated for this file.
126126
"minecraft"("net.minecraft:minecraft:${rootProject.property("minecraft-version")}")
127127

128-
// Set up the layered mappings with Yarn and my Menu mappings.
129-
// The average modder would have "mappings"("net.fabricmc:yarn:...") or "mappings"(loom.officialMojangMappings()).
128+
// Set up the layered mappings with Yarn, a NeoForge compatibility patch and my Menu mappings.
130129
"mappings"(loom.layered {
131130
mappings("net.fabricmc:yarn:${rootProject.property("minecraft-version")}+${rootProject.property("yarn-mappings")}:v2")
131+
mappings("dev.architectury:yarn-mappings-patch-neoforge:${rootProject.property("neoforge-mappings-patch-version")}")
132132
val menuVersion = rootProject.property("menu-mappings").toString()
133133
mappings("io.github.juuxel:menu:$menuVersion") {
134134
enigmaMappings()

0 commit comments

Comments
 (0)