Skip to content

Commit

Permalink
allow older minecraft versions (fix #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mari023 committed Aug 23, 2022
1 parent dfb3da3 commit e017f7e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@ jobs:
loaders: |
fabric
quilt
game-versions: 1.19
game-versions: |
1.16.5
1.17
1.17.1
1.18
1.18.1
1.18.2
1.19
1.19.1
1.19.2
modrinth-dependencies: |
fabric-api | depends
java: 17
Expand Down
8 changes: 7 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@

"depends": {
"fabric": "*",
"minecraft": "~1.19"
"minecraft": [
"~1.16",
"~1.17",
"~1.18",
"~1.19"
],
"java": "17"
}
}

0 comments on commit e017f7e

Please sign in to comment.