From 9bdcc397341d16c3a4fb24876f64afed0151d07f Mon Sep 17 00:00:00 2001 From: Starstreak Date: Sun, 9 Nov 2025 15:34:31 +0000 Subject: [PATCH] Bug fixes in combat and whore menu. --- main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 0e35539..68b806c 100644 --- a/main.go +++ b/main.go @@ -288,7 +288,7 @@ func HitTheStreets() { bumHP := 100 i := 1 hitLoop: - for playerHP <= 0 { + for bumHP >= 0 { for i > 0 { ClearScreen() switch paragonRank { @@ -434,7 +434,7 @@ func RedRoom() { switch { case money >= 2000: whores = whores + 1 - money = money - 2000 // *** BUG FIX: Changed 5000 to 2000 *** + money = money - 2000 ClearScreen() fmt.Println(slutStyle.Render("You just purchased 1 whore to be a sex slave!")) MashEnterKey() @@ -523,6 +523,7 @@ func RedRoom() { switch { case money >= 100: money = money - 100 + playerHP = playerHP + 200 switch { case condoms == 0: stdChance := rand.IntN(100) @@ -570,9 +571,7 @@ func RedRoom() { } default: condoms = condoms - 1 - playerHP = playerHP + 200 } - ClearScreen() i = 0 default: