Skip to content

Commit

Permalink
complete v 1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
randH7 committed Oct 4, 2023
1 parent 7e2e6f0 commit 915ede4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IronBattleDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -288,12 +288,12 @@ public static String startRound(int roundNum, Character p1, Character p2){
if(nameP1.equals("Warrior")) {
((Warrior) p1).attack(p2);
System.out.println("| (Type Attack) |");
System.out.println("| ⇓ |");
System.out.println("| ⇓ |");
System.out.println(p1.getTypeAttack());
}else if (nameP1.equals("Wizard")) {
((Wizard) p1).attack(p2);
System.out.println("| (Type Attack) |");
System.out.println("| ⇓ |");
System.out.println("| ⇓ |");
System.out.println(p1.getTypeAttack());
}
System.out.println("| |");
Expand Down

0 comments on commit 915ede4

Please sign in to comment.