Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CubesterYT committed Jan 28, 2025
1 parent d89378b commit b895b04
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/engine/tw-interpolate.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ const interpolate = (runtime, time) => {
// Don't waste time interpolating sprites that are hidden.
if (
!target.visible ||
target.effects.ghost === 100 &&
interpolationData.ghost === 100
(
target.effects.ghost === 100 &&
interpolationData.ghost === 100
)
) {
continue;
}
Expand Down

0 comments on commit b895b04

Please sign in to comment.