Procházet zdrojové kódy

fix if elseif section

rachels před 2 roky
rodič
revize
806cf8fc86
1 změnil soubory, kde provedl 12 přidání a 6 odebrání
  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