Browse Source

[fixed] Code for gape reduction was submitted unfinished in error

Kevin_Smarts 3 years ago
parent
commit
41413e3a72
1 changed files with 9 additions and 3 deletions
  1. 9 3
      locations/stat.qsrc

+ 9 - 3
locations/stat.qsrc

@@ -294,14 +294,18 @@ end
 if daystart = 0: daystart = 1
 
 !!Gaping of vagina recovery time
+!! [1] stored gape value
+!! [3] timer
+!! [4] time between each reduction in gape
 
 if vgape > vgape[1]:
 	vgape[3] = totminut
 	vgape = vgape[1]
 elseif vgape > 0:
-	if vgape - (totminut - vgape[3])/vgape[4]
-	if vgape = 0: killvar 'vgape', 3
+	if vgape - (totminut - vgape[3])/vgape[4]: vgape -= 1
 	vgape[1] = vgape
+else
+	killvar 'vgape', 3
 end
 
 !!Gaping of anus recovery time
@@ -310,9 +314,11 @@ if agape > agape[1]:
 	agape[3] = totminut
 	agape = agape[1]
 elseif agape > 0:
-	if agape - (totminut - agape[3])/agape[4]
+	if agape - (totminut - agape[3])/agape[4]: agape -= 1
 	if agape = 0: killvar 'agape', 3
 	agape[1] = agape
+else
+	killvar 'agape', 3
 end
 
 !!Recovery from spanking - will be superseded by pain system