Browse Source

fix if elseif section

rachels 2 years ago
parent
commit
806cf8fc86
1 changed files with 12 additions and 6 deletions
  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