Bug fixes in combat and whore menu.

This commit is contained in:
Starstreak 2025-11-09 15:34:31 +00:00
parent ee8734ea37
commit 9bdcc39734

View file

@ -288,7 +288,7 @@ func HitTheStreets() {
bumHP := 100 bumHP := 100
i := 1 i := 1
hitLoop: hitLoop:
for playerHP <= 0 { for bumHP >= 0 {
for i > 0 { for i > 0 {
ClearScreen() ClearScreen()
switch paragonRank { switch paragonRank {
@ -434,7 +434,7 @@ func RedRoom() {
switch { switch {
case money >= 2000: case money >= 2000:
whores = whores + 1 whores = whores + 1
money = money - 2000 // *** BUG FIX: Changed 5000 to 2000 *** money = money - 2000
ClearScreen() ClearScreen()
fmt.Println(slutStyle.Render("You just purchased 1 whore to be a sex slave!")) fmt.Println(slutStyle.Render("You just purchased 1 whore to be a sex slave!"))
MashEnterKey() MashEnterKey()
@ -523,6 +523,7 @@ func RedRoom() {
switch { switch {
case money >= 100: case money >= 100:
money = money - 100 money = money - 100
playerHP = playerHP + 200
switch { switch {
case condoms == 0: case condoms == 0:
stdChance := rand.IntN(100) stdChance := rand.IntN(100)
@ -570,9 +571,7 @@ func RedRoom() {
} }
default: default:
condoms = condoms - 1 condoms = condoms - 1
playerHP = playerHP + 200
} }
ClearScreen() ClearScreen()
i = 0 i = 0
default: default: