Skip to content

Commit

Permalink
refactor: remove clockwise argument
Browse files Browse the repository at this point in the history
  • Loading branch information
andretchen0 committed Aug 4, 2023
1 parent d615943 commit 3c61b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abilities/Impaler.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export default (G) => {
nextdmg = nextdmg.damages;

// Get next available targets
let nextTargets = ability.getTargets(trg.adjacentHexes(1, true));
let nextTargets = ability.getTargets(trg.adjacentHexes(1));

nextTargets = nextTargets.filter(function (item) {
if (item.hexesHit === undefined) {
Expand Down

0 comments on commit 3c61b97

Please sign in to comment.