fail scoring fix

This commit is contained in:
Luxferre
2026-01-02 12:43:16 +02:00
parent 9b3236af11
commit d20da29a9b
+2 -2
View File
@@ -160,9 +160,9 @@ def scoundrel():
if itemtype == 'M':
score -= itemval
if score > 0:
print('You won! Your score: ' + score)
print('You won! Your score:', score)
else:
print('You lost! Your score: ' + score)
print('You lost! Your score:', score)
return score