From 820ee5b02ebe7893b38980ac491e8b90dc14c74b Mon Sep 17 00:00:00 2001
From: Charlie Darques <charlie.darques.etu@univ-lille.fr>
Date: Thu, 5 Sep 2024 11:52:14 +0200
Subject: [PATCH] affichage infos niveau

---
 src/main/java/bitFight/Level.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/bitFight/Level.java b/src/main/java/bitFight/Level.java
index e01e7a1..78391f2 100644
--- a/src/main/java/bitFight/Level.java
+++ b/src/main/java/bitFight/Level.java
@@ -147,6 +147,7 @@ public class Level{
     // méthodes de combats
     // liste des attaques et défenses possibles pour le joueur
     public void possibleActions() throws IOException {
+        this.displayLevelInfos();
         Display.clearDialogBox();
         System.out.println("Possible " + Terminal.RED + "attacks" + Terminal.RESET +  " are : \n \t punch, kick, double kick, supermanpunch. \"");
         System.out.println("Possible " + Terminal.BLUE + "defenses" + Terminal.RESET + " are : \n \t lowblock, highblock\"");
-- 
GitLab