Skip to content

Commit

Permalink
fix[minor] - display estimated items value in gold color
Browse files Browse the repository at this point in the history
  • Loading branch information
OcelotWalrus committed Dec 29, 2024
1 parent 26fdfe3 commit 2fb9322
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3213,7 +3213,10 @@ def run(play):
else:
cout("NAME: " + which_item)
cout("TYPE: " + item[which_item]["type"])
cout("ESTIMATED VALUE: " + str(round(item[which_item]["gold"])))
cout(
"ESTIMATED VALUE: " + COLOR_YELLOW + COLOR_STYLE_BRIGHT + str(round(item[which_item]["gold"]))
+ COLOR_RESET_ALL
)
text = "DESCRIPTION: " + item[which_item]["description"]
text_handling.print_long_string(text)
if (
Expand Down

0 comments on commit 2fb9322

Please sign in to comment.