This commit is contained in:
François Autin 2021-06-24 14:19:05 +02:00
commit 8c146b324b

View File

@ -514,7 +514,7 @@ public class match {
ArrayList<Frame> af = new ArrayList<>(c.getFrames());
c.clearNextFrames();
for(int i = 0; (i < af.size() - 1) && (i < atk.getFrame().size()); i++) {
Frame jumpf = c.getFrames().get(i+1);
Frame jumpf = af.get(i+1);
jumpf.cloneWithoutMovement(atk.getFrame().get(i));
c.addSingleFrame(jumpf);
}