Skip to content

Commit

Permalink
fix: make multiple filters of the same type work correctly together—f…
Browse files Browse the repository at this point in the history
…or real this time

Closes #167
  • Loading branch information
ghost91- committed Jan 17, 2022
1 parent 1392a42 commit a46b56b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/filterEffects/FilterManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class FilterManager {

for (const key of filtersToCreate) {
const { type, options } = this.filterInfos[key];
this.filters[key] = new CONFIG.fxmaster.filters[type](options);
this.filters[key] = new CONFIG.fxmaster.filters[type](options, key);
this.filters[key].skipFading = skipFading;
this.filters[key].play();
}
Expand Down

0 comments on commit a46b56b

Please sign in to comment.