Skip to content

Commit

Permalink
- Forgot twineedle
Browse files Browse the repository at this point in the history
  • Loading branch information
PHR1990 committed May 13, 2022
1 parent fb24ffc commit d3fd1b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ private HitTimes convertHitTimes(EffectDto effectDto) {
if (effectDto.getEffect().toLowerCase().contains("hits twice in one turn")) {
return HitTimes.TWICE;
}
if (effectDto.getEffect().toLowerCase().contains("hits twice in the same turn")) {
return HitTimes.TWICE;
}
return HitTimes.ONCE;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public interface MoveServiceConstants {
"clamp",
"bind",
"bide",
"acid-armor",
"confure-ray",
"disable",
"dream-eater",
Expand Down

0 comments on commit d3fd1b3

Please sign in to comment.