Skip to content

Commit

Permalink
Merge pull request #5 from Larkinabout/main
Browse files Browse the repository at this point in the history
  • Loading branch information
kbender84 authored Oct 26, 2024
2 parents 26c1f0b + 79532c4 commit 93786c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ Hooks.on('tokenActionHudCoreApiReady', async (coreModule) => {

CoriolisSystemManager = class CoriolisSystemManager extends coreModule.api.SystemManager {
/** @override */
doGetActionHandler () {
getActionHandler () {
return new CoriolisActionHandler()
}

Expand All @@ -1037,16 +1037,16 @@ Hooks.on('tokenActionHudCoreApiReady', async (coreModule) => {
}

/** @override */
doGetRollHandler (handlerId) {
getRollHandler (handlerId) {
return new CoriolisRollHandler()
}

/** @override */
/*doRegisterSettings (updateFunc) {
/*registerSettings (updateFunc) {
systemSettings.register(updateFunc)
}*/

async doRegisterDefaultFlags () {
async registerDefaults () {
const ATTRIBUTES_NAME = game.i18n.localize('YZECORIOLIS.Attributes');
const GENERAL_NAME = game.i18n.localize('YZECORIOLIS.SkillCatGeneral');
const ADVANCED_NAME = game.i18n.localize('YZECORIOLIS.SkillCatAdvanced');
Expand Down Expand Up @@ -1329,7 +1329,7 @@ Hooks.on('tokenActionHudCoreApiReady', async (coreModule) => {

const module = game.modules.get('token-action-hud-coriolis');
module.api = {
requiredCoreModuleVersion: '1.5',
requiredCoreModuleVersion: '2.0',
SystemManager: CoriolisSystemManager
}
Hooks.call('tokenActionHudSystemReady', module)
Expand Down

0 comments on commit 93786c4

Please sign in to comment.