Skip to content

Commit

Permalink
Update waig for Minecraft 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
madjoel committed Dec 16, 2021
1 parent 7978e72 commit 7afaea8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 33 deletions.
67 changes: 35 additions & 32 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,37 @@
{
"schemaVersion":1,
"id":"waig",
"version":"${version}",
"name":"Where Am I Going",
"description":"Adds a minimal RPG-inspired compass HUD to the game",
"authors":[
"Matthieu Laqua"
],
"contributors":[],
"contact":{
"homepage":"https://www.curseforge.com/minecraft/mc-mods/waig-where-am-i-going",
"sources":"https://github.com/madjoel/waig",
"issues":"https://github.com/madjoel/waig/issues"
},
"license":"MIT",
"icon":"assets/waig/icon.png",
"environment":"client",
"entrypoints":{
"main":[],
"client":[
"one.laqua.waig.WaigMod"
],
"server":[]
},
"mixins":[
"waig.mixins.json"
],
"depends":{
"fabricloader":">=0.11.6",
"fabric":"*",
"fabric-key-binding-api-v1":"*"
}
"schemaVersion":1,
"id": "waig",
"version": "${version}",
"name": "Where Am I Going",
"description": "Adds a minimal RPG-inspired compass HUD to the game",
"authors": [
"Matthieu Laqua"
],
"contact": {
"homepage": "https://www.curseforge.com/minecraft/mc-mods/waig-where-am-i-going",
"sources": "https://github.com/madjoel/waig",
"issues": "https://github.com/madjoel/waig/issues"
},
"license": "MIT",
"icon": "assets/waig/icon.png",
"environment": "client",
"entrypoints": {
"main": [],
"client": [
"one.laqua.waig.client.WaigClient"
],
"server": []
},
"mixins": [
"waig.mixins.json"
],
"depends": {
"minecraft": [
"1.18",
"1.18.1"
],
"fabricloader": ">=0.12.11",
"fabric": "*",
"fabric-key-binding-api-v1": "*"
}
}
2 changes: 1 addition & 1 deletion src/main/resources/waig.mixins.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"required": true,
"minVersion": "0.8",
"package": "one.laqua.waig.mixin",
"compatibilityLevel": "JAVA_16",
"mixins": [
"BossBarHudAccessor"
],
"client": [],
"server": [],
"injectors": {
"defaultRequire": 1
}
Expand Down

0 comments on commit 7afaea8

Please sign in to comment.