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: