Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkerouac committed Dec 7, 2022
2 parents e951ae6 + ba00d1e commit 1e2e2a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2

# create a zip file with all files required by the module to add to the release
- run: zip -r ./module.zip module.json CHANGELOG.md spell-effects/ scripts/
- run: zip -r ./module.zip module.json CHANGELOG.md spell-effects/ scripts/ sound-fx/ packs/

# Get the version from 'module.json'
- name: Get Version
Expand Down
7 changes: 3 additions & 4 deletions scripts/sequencer-db.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Hooks.once('ready', () => {
if (game.modules.get("sequencer")?.active) {
Hooks.once('sequencer.ready', () => {
const PATH = "modules/animated-spell-effects-cartoon/spell-effects/cartoon";
const cartoonDatabase = {
"air": {
Expand Down Expand Up @@ -932,5 +931,5 @@ Hooks.once('ready', () => {
},
};
Sequencer.Database.registerEntries('animated-spell-effects-cartoon', cartoonDatabase);
}
});

});

0 comments on commit 1e2e2a9

Please sign in to comment.