This commit is contained in:
Paul Gross
2020-04-21 18:01:24 +02:00
parent 2098793895
commit 1e5828f763
16 changed files with 38 additions and 76 deletions

View File

@ -108,7 +108,6 @@ public class Joueur {
if(blessure > 0)
{
j2.addToStat(PLAYER_HP, -blessure);
this.cartePersonnage.attaquer(j2, blessure);
}
}
@ -195,4 +194,9 @@ public class Joueur {
return this.carteLieu;
}
public void setRevele(boolean b) {
this.revele = true;
}
}