Skip to content

Commit

Permalink
Fix: relationships.required
Browse files Browse the repository at this point in the history
relationships.required must be an array to trigger dependency warning in Foundry when enabling module.
  • Loading branch information
Z3nner committed Mar 4, 2024
1 parent 225d7c6 commit 38421c1
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,33 @@
"title": "Lancer Weapon FX",
"description": "Manual Weapon special effects oriented towards Lancer TTRPG.",
"authors": [
{ "name": "Z3nner" },
{ "name": "dodgepong" }
{
"name": "Z3nner"
},
{
"name": "dodgepong"
}
],
"version": "1.6.1",
"version": "1.7.2",
"minimumCoreVersion": "10",
"compatibility": {
"minimum": 10,
"verified": "10.291"
},
"url": "https://github.com/Z3nner/lancer-weapon-fx",
"manifest": "https://github.com/Z3nner/lancer-weapon-fx/releases/latest/download/module.json",
"download": "https://github.com/Z3nner/lancer-weapon-fx/releases/download/1.6.0/module.zip",

"download": "https://github.com/Z3nner/lancer-weapon-fx/releases/download/1.7.2/module.zip",
"relationships": {
"requires": {
"id": "sequencer",
"type": "module",
"manifest": "https://github.com/fantasycalendar/FoundryVTT-Sequencer/releases/latest/download/module.json",
"compatibility": {"minimum": "2.3.7"}
}
"requires": [
{
"id": "sequencer",
"type": "module",
"manifest": "https://github.com/fantasycalendar/FoundryVTT-Sequencer/releases/latest/download/module.json",
"compatibility": {
"minimum": "2.3.7"
}
}
]
},
"languages": [
{
Expand Down Expand Up @@ -57,4 +64,4 @@
"module": "lancer-weapon-fx"
}
]
}
}

0 comments on commit 38421c1

Please sign in to comment.