Skip to content

Commit

Permalink
#20: Reduce bomb vX "throw" velocity from 75% to 50% of helicopter vX.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottschiller committed Jun 10, 2024
1 parent 500f1f9 commit 5812fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/units/Helicopter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ const Helicopter = (options = {}) => {
isEnemy: data.isEnemy,
x: data.x + data.halfWidth,
y: data.y + data.height - 6,
vX: data.vX * 0.75,
vX: data.vX * 0.5,
vY: data.vY
};
}
Expand Down

0 comments on commit 5812fef

Please sign in to comment.