Selaa lähdekoodia

[fixed] The sleep setup in placer_sex was just messy so I made it easier to follow.

KevinSmarts 4 vuotta sitten
vanhempi
säilyke
f14de44ffb
1 muutettua tiedostoa jossa 7 lisäystä ja 4 poistoa
  1. 7 4
      locations/placer_sex.qsrc

+ 7 - 4
locations/placer_sex.qsrc

@@ -1420,10 +1420,7 @@ if $args[0] = 'stay':
 	'<center><img <<$set_imgh>> src="images/locations/pavlovsk/park/sex/placer_sex29.jpg"></center>'
 	'The guys are happy that you decided to stay the night, and <<$boydesc2>> goes to another room to fetch a guitar. He''s fairly good at playing it, and you all happily sing along to the songs he''s plays. Afterwards, you all enjoy another glass of vodka while you exchange stories. Before you know it, it''s getting late.'
 	act 'Go to bed':
-		gs 'placer_sex', 'sleep'
-		act 'Make breakfast for the guys': gt 'placer_sex', 'breakfast'
-		act 'Lie in bed': gt 'placer_sex', 'stay_in_bed'
-		if rand (1,6)=1: delact 'Make breakfast for the guys' & delact 'Lie in bed' & gt 'placer_sex', 'sleep_sex'
+		gt 'placer_sex', 'sleep'
 	end
 end
 
@@ -1466,6 +1463,12 @@ if $args[0] = 'sleep':
 		gs'stat'
 		'Once you''re well rested, you wake up again and sit up in the bed.'
 		InSleep = 0
+		if rand (1,6) = 1:
+			gt 'placer_sex', 'sleep_sex'
+		else
+			act 'Make breakfast for the guys': gt 'placer_sex', 'breakfast'
+			act 'Lie in bed': gt 'placer_sex', 'stay_in_bed'
+		end
 	else
 		jump 'loopson'
 	end