Skip to content

Commit

Permalink
Filter out auto attack
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Mangliers authored and Mark Mangliers committed Dec 22, 2020
1 parent 3506b65 commit 094dd6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function Action({ actionId, additionalClasses }) {
}
}, [actionId])

if (apiData === undefined || !apiData.Icon) {
if (apiData === undefined || !apiData.Icon || actionId == 7) {
return null
}

Expand Down

0 comments on commit 094dd6e

Please sign in to comment.