Small bugfix for jumping attacks again²

This commit is contained in:
Azra Victor 2021-06-24 12:51:46 +02:00 committed by no
parent ce1439003b
commit 388fd797bf

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);
}