From d20da29a9b7b30f5e2ff19312222a23a1163949b Mon Sep 17 00:00:00 2001 From: Luxferre Date: Fri, 2 Jan 2026 12:43:16 +0200 Subject: [PATCH] fail scoring fix --- game/scoundrel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/scoundrel.py b/game/scoundrel.py index 20f54a4..30e732b 100644 --- a/game/scoundrel.py +++ b/game/scoundrel.py @@ -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