diff --git a/src/gameplay/match/match.java b/src/gameplay/match/match.java index 4541ac8..7bdbbdf 100644 --- a/src/gameplay/match/match.java +++ b/src/gameplay/match/match.java @@ -510,7 +510,7 @@ public class match { if(attackIsPossible) { if(c.getStatus() == Status.JUMPING) { c.clearNextFrames(); - for(int i = 0; (i < c.getFrames().size() - 1) || (i < atk.getFrame().size()); i++) { + for(int i = 0; (i < c.getFrames().size() - 1) && (i < atk.getFrame().size()); i++) { Frame jumpf = c.getFrames().get(i+1); jumpf.cloneWithoutMovement(atk.getFrame().get(i)); c.addSingleFrame(jumpf);