Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
flober committed Aug 1, 2024
1 parent 80a8ea4 commit 8262c6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Controller.hs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ defPlayerState =
hp = 20,
armor = 0,
alive = True,
phase = HeroSelect
phase = HeroSelect,
combatSequence = ([], 0)
}

runGame :: IO ()
Expand Down
2 changes: 1 addition & 1 deletion src/View.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ renderRecruit gs p =
hBorder,
"| Player: " ++ alignMid maxRowContentWidth (intercalate " | " [healthText, armorText, goldText]) ++ " |",
hBorder,
"| Opps HP: " ++ alignMid maxRowContentWidth oppInfoText,
"| Opps HP: " ++ alignMid maxRowContentWidth oppInfoText ++ " |",
hBorder
]
where
Expand Down

0 comments on commit 8262c6e

Please sign in to comment.