Skip to content

Commit

Permalink
fix: Improve mod compatibility (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Norbiros committed Jul 28, 2024
1 parent 685db19 commit 6450b62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"issues": "https://github.com/Norbiros/emojitype/issues"
},

"environment": "*",
"environment": "client",
"entrypoints": {
"main": [
"dev.norbiros.emojitype.fabric.EmojiTypeFabric"
Expand All @@ -33,11 +33,11 @@
],

"depends": {
"fabricloader": "~${fabric_loader_version}",
"fabricloader": "^${fabric_loader_version}",
"minecraft": "${fabric_minecraft_version_range}"
},
"suggests": {
"cloth-config2" : "~${cloth_config_version}",
"modmenu": "~${modmenu_version}"
"cloth-config2" : "^${cloth_config_version}",
"modmenu": "^${modmenu_version}"
}
}
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ minecraft_version = 1.21

# Loader specific
fabric_minecraft_version_range=1.21
fabric_loader_version=0.16.0
# We don't have to use most recent version for compatibility reasons
fabric_loader_version=0.15.11
yarn_mappings=1.21+build.9

neo_minecraft_version_range=[21, 22)
Expand Down

0 comments on commit 6450b62

Please sign in to comment.