Skip to content

Commit

Permalink
Merge pull request #15 from OUCC/#3-戦闘シーン
Browse files Browse the repository at this point in the history
fix BattleManager^^
  • Loading branch information
aiueo-1234 authored Jun 18, 2023
2 parents fb65fd0 + afd173c commit 55c06a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Assets/Scripts/BattleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ void Start()
if (battleData.ActionJudge)
{
sendMessage += GenerateMessage(battleData.Player);
sendMessage += "\n";
sendMessage += GenerateMessage(battleData.Enemy);
}
else
{
sendMessage += GenerateMessage(battleData.Enemy);
sendMessage += "\n";
sendMessage += GenerateMessage(battleData.Player);
}
return (sendMessage, playerHp, enemyHp);
Expand Down

0 comments on commit 55c06a9

Please sign in to comment.