Skip to content

Commit

Permalink
feat: Find the modrinth page in modmenu
Browse files Browse the repository at this point in the history
  • Loading branch information
Erb3 committed Aug 7, 2023
1 parent c0d6868 commit e9aec89
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx3G
# check these on https://fabricmc.net/develop/
minecraft_version=1.20.1
yarn_version=1.20.1+build.9
minecraft_version=1.20
yarn_version=1.20+build.1
loader_version=0.14.21
mod_version=1.2.0
fabric_api_version=0.84.0+1.20.1
mod_version=1.2.1
fabric_api_version=0.83.0+1.20
maven_group=github.erb3.fabric
archives_base_name=cactusfix
5 changes: 3 additions & 2 deletions src/main/resources/assets/cactusfix/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"gamerule.shouldCactusDamageItems": "Cactus should despawn items",
"gamerule.allowFreerCactusPlacing": "Cactus should have freer placing",
"gamerule.shouldCactusDamagePlayers": "Cactus should hurt players"
"gamerule.shouldCactusDamageItems": "Cactus should despawn items",
"gamerule.shouldCactusDamagePlayers": "Cactus should hurt players",
"cactusfix.modrinth": "Modrinth page"
}
12 changes: 11 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,18 @@
],
"depends": {
"fabricloader": ">=${loader_version}",
"minecraft": "${minecraft_version}",
"minecraft": "~${minecraft_version}",
"fabric-api": "*",
"java": ">=17"
},
"suggests": {
"modmenu": "*"
},
"custom": {
"modmenu": {
"links": {
"cactusfix.modrinth": "https://modrinth.com/mod/cactusfix"
}
}
}
}

0 comments on commit e9aec89

Please sign in to comment.