19 lines
493 B
JavaScript
19 lines
493 B
JavaScript
import { api } from './api.js'
|
|
import { log } from './shim.js'
|
|
|
|
function _checkModule (name) {
|
|
if (!game.modules.get(name)?.active && game.user.isGM) {
|
|
let action = 'install and activate'
|
|
if (game.modules.get(name)) action = 'activate'
|
|
ui.notifications.error(
|
|
`SWADE MB Helpers requires the ${name} module. Please ${action} it.`)
|
|
}
|
|
}
|
|
|
|
Hooks.on('setup', api.registerFunctions)
|
|
|
|
Hooks.on('ready', () => {
|
|
_checkModule('warpgate')
|
|
log('Initialized SWADE MB Helpers')
|
|
})
|