Bug fixes in combat and whore menu.
This commit is contained in:
parent
ee8734ea37
commit
9bdcc39734
1 changed files with 3 additions and 4 deletions
7
main.go
7
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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue