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

Commit 7c15976

Browse files
Upgraded toolbox
1 parent 6dbc25c commit 7c15976

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

fabric/build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,14 @@ dependencies {
2929
modImplementation "net.fabricmc:fabric-loader:$fabric_loader_version"
3030

3131
common(project(path: ":common", configuration: "namedElements")) { transitive false }
32-
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
33-
3432
common("com.github.stephengold:Libbulletjme:$libbulletjme_version") { transitive false }
3533
modApi("dev.lazurite:toolbox-fabric:$toolbox_version") { transitive false }
3634
modApi("dev.lazurite:transporter-fabric:$transporter_version") { transitive false }
3735

36+
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
3837
shadowCommon("com.github.stephengold:Libbulletjme:$libbulletjme_version") { transitive false }
39-
include("dev.lazurite:toolbox-fabric:$toolbox_version") { transitive false }
40-
include("dev.lazurite:transporter-fabric:$transporter_version") { transitive false }
38+
shadowCommon("dev.lazurite:toolbox-fabric:$toolbox_version") { transitive false }
39+
shadowCommon("dev.lazurite:transporter-fabric:$transporter_version") { transitive false }
4140
}
4241

4342
remapJar {

fabric/src/main/resources/fabric.mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"license": "MIT",
1616
"environment": "*",
1717
"icon": "icon.png",
18-
"mixins": [ "rayon.mixins.json" ],
18+
"mixins": [ "rayon.mixins.json", "toolbox.mixins.json" ],
1919

2020
"entrypoints": {
2121
"main": [ "dev.lazurite.rayon.impl.fabric.RayonFabric" ],

gradle.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ org.gradle.parallel = true
44
forge_enabled = true
55

66
# Mod
7-
rayon_version = 1.5.5
7+
rayon_version = 1.5.6
88
maven_group = dev.lazurite
99

1010
# Common
1111
minecraft_version = 1.18.1
1212

1313
# Fabric
14-
fabric_loader_version = 0.13.1
15-
fabric_api_version = 0.46.2+1.18
14+
fabric_loader_version = 0.13.2
15+
fabric_api_version = 0.46.4+1.18
1616

1717
# Forge
18-
forge_version = 39.0.64
18+
forge_version = 39.0.79
1919

2020
# Mod Dependencies
2121
libbulletjme_version = 12.4.1
2222
transporter_version = 1.3.10
23-
toolbox_version = 1.3.13
23+
toolbox_version = 1.3.17
2424

2525
# Gradle
2626
shadow_version = 7.0.0

0 commit comments

Comments
 (0)