Parcourir la source

fix if elseif section

rachels il y a 2 ans
Parent
commit
806cf8fc86
1 fichiers modifiés avec 12 ajouts et 6 suppressions
  1. 12 6
      locations/brothel.qsrc

+ 12 - 6
locations/brothel.qsrc

@@ -1869,12 +1869,18 @@ if $ARGS[0] = 'section1_play_sex':
 	end
       
     actionRand = rand (1, 6)
-	if actionRand = 1:gt 'brothel', 'section1_blowjob'
-	elseif actionRand = 2:gt 'brothel', 'section1_deepthroath'
-	elseif actionRand = 3:gt 'brothel', 'section1_skullfuck'
-	elseif actionRand = 4:gt 'brothel', 'section1_fingering'
-	elseif actionRand = 5:gt 'brothel', 'section1_vag_fuck'
-	elseif actionRand = 6:gt 'brothel', 'section1_ass_fuck'
+	if actionRand = 1:
+		gt 'brothel', 'section1_blowjob'
+	elseif actionRand = 2:
+		gt 'brothel', 'section1_deepthroath'
+	elseif actionRand = 3:
+		gt 'brothel', 'section1_skullfuck'
+	elseif actionRand = 4:
+		gt 'brothel', 'section1_fingering'
+	elseif actionRand = 5:
+		gt 'brothel', 'section1_vag_fuck'
+	elseif actionRand = 6:
+		gt 'brothel', 'section1_ass_fuck'
     end
 end