zarmstrong / hlo-importer

A module for Foundry VTT that converts and imports Herolab Online 2e characters.
MIT License
6 stars 8 forks source link

Module can be enabled in other systems #9

Closed wildj79 closed 3 years ago

wildj79 commented 3 years ago

Currently, it is possible to enable this module in a system other than Pathfinder, 2nd edition. Adding a dependencies property to your module.json file would prevent this.

{
    // ...Other stuff
    "dependencies": [
        { "name": "pf2e", "type": "system" }
    ],
    // ...Other stuff
}
zarmstrong commented 3 years ago

Thanks for pointing that out! I updated the module to prevent this.