P2 can now hit P1

This commit is contained in:
Léo 2021-06-25 13:59:37 +02:00
parent 39d214a3a2
commit cfb056a05e
1 changed files with 10 additions and 1 deletions

View File

@ -397,10 +397,19 @@ public class match {
case 21:
try {
handleThrows(p1, p2);
handleThrows(p2,p1);
} catch (IndexOutOfBoundsException e) {}
try {
handleHits(p1, p2, inputsP2);
}catch (IndexOutOfBoundsException e) {};
try {
handleThrows(p2,p1);
} catch (IndexOutOfBoundsException e) {}
try {
handleHits(p2, p1, inputsP1);
}catch (IndexOutOfBoundsException e) {};
acCode = 22;