rmayormartins commited on
Commit
4951631
·
1 Parent(s): 9b6428c
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -26,6 +26,9 @@ def format_colors(text):
26
  text = text.replace("[32m", "")
27
  text = text.replace("[0m", "")
28
 
 
 
 
29
  return text
30
 
31
  def check_and_install_java():
@@ -759,8 +762,9 @@ public class BattleMain {{
759
  System.out.println();
760
  }}
761
 
762
- // Mostrar status de vida
763
  System.out.println("Vida Time 1: " + team1.getHealth() + " | Vida Time 2: " + team2.getHealth());
 
764
  System.out.flush();
765
 
766
  // Pausa para visualização
 
26
  text = text.replace("[32m", "")
27
  text = text.replace("[0m", "")
28
 
29
+ # NÃO alterar os símbolos das aeronaves - deixar como estão
30
+ # > e < são as aeronaves e devem aparecer normalmente
31
+
32
  return text
33
 
34
  def check_and_install_java():
 
762
  System.out.println();
763
  }}
764
 
765
+ // Mostrar status de vida e posições das aeronaves
766
  System.out.println("Vida Time 1: " + team1.getHealth() + " | Vida Time 2: " + team2.getHealth());
767
+ System.out.println("Posições - Time 1: (" + p1PosX + "," + team1.getPositionY() + ") | Time 2: (" + p2PosX + "," + team2.getPositionY() + ")");
768
  System.out.flush();
769
 
770
  // Pausa para visualização