Skip to content

Commit bfb017e

Browse files
committed
Change reputation gain on sales report to show '+'
1 parent f07b725 commit bfb017e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def rep_change(stats, rep_score, sold):
301301
stats["reputation"] += 0.5
302302
print(
303303
f"{green('Reputation increase:')}\
304-
{gold('-' + str(stats['reputation']))}"
304+
{gold('+' + str(stats['reputation']))}"
305305
)
306306
elif rep_percent > 0.5 and c_rep == 5:
307307
print(gold("Reputation already at a 5!"))

0 commit comments

Comments
 (0)