Skip to content

Commit

Permalink
Fixed minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxxer committed May 28, 2024
1 parent 03f07a7 commit 703056e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/canvas-effects/canvas-effect.js
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ export default class CanvasEffect extends PIXI.Container {
);

for (let animation of oneShotAnimations) {
animation.target = foundry.utils.foundry.utils.getProperty(this, animation.target);
animation.target = foundry.utils.getProperty(this, animation.target);

if (!animation.target) continue;

Expand Down Expand Up @@ -2703,7 +2703,7 @@ export default class CanvasEffect extends PIXI.Container {
);

for (let animation of loopingAnimations) {
animation.target = foundry.utils.foundry.utils.getProperty(this, animation.target);
animation.target = foundry.utils.getProperty(this, animation.target);

if (!animation.target) continue;

Expand Down Expand Up @@ -2758,7 +2758,7 @@ export default class CanvasEffect extends PIXI.Container {
);

for (let animation of oneShotEndingAnimations) {
animation.target = foundry.utils.foundry.utils.getProperty(this, animation.target);
animation.target = foundry.utils.getProperty(this, animation.target);

if (!animation.target) continue;

Expand Down

0 comments on commit 703056e

Please sign in to comment.