Skip to content

Commit 16806ce

Browse files
authored
Merge pull request #6 from myoun/fabricloader
2 parents 6f475c4 + dd50ef6 commit 16806ce

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ kotlin.code.style=official
22
archives_base_name=fabric-example-mod
33
maven_group=net.fabricmc
44
loom_version=1.0-SNAPSHOT
5-
minecraft_version=1.19.2
6-
yarn_mappings=1.19.2+build.8
7-
loader_version=0.14.9
8-
fabric_kotlin_version=1.8.3+kotlin.1.7.10
9-
fabric_api_version=0.60.0+1.19.2
5+
minecraft_version=1.19.3
6+
yarn_mappings=1.19.3+build.5
7+
loader_version=0.14.12
8+
fabric_kotlin_version=1.9.0+kotlin.1.8.0
9+
fabric_api_version=0.70.0+1.19.3
1010
mod_version=1.0.0
1111

1212
org.gradle.jvmargs=-Xmx4000m

src/main/kotlin/net/fabricmc/example/mixin/ExampleMixin.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo
88

99
@Mixin(TitleScreen::class)
1010
class ExampleMixin {
11+
1112
@Inject(at = [At("HEAD")], method = ["init()V"])
12-
private fun init(info:CallbackInfo) {
13+
private fun init(info: CallbackInfo) {
1314
println("This line is printed by an example mod mixin!")
1415
}
1516
}

src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
],
3131

3232
"depends": {
33-
"fabricloader": ">=0.14.9",
33+
"fabricloader": ">=0.14.12",
3434
"fabric": "*",
3535
"minecraft": "1.19.x",
3636
"java": ">=17",
37-
"fabric-language-kotlin": ">=1.8.3+kotlin.1.7.10"
37+
"fabric-language-kotlin": ">=1.9.0+kotlin.1.8.0"
3838
},
3939
"suggests": {
4040
"another-mod": "*"

0 commit comments

Comments
 (0)