Browse Source

[changed] willpower check for swallow to account for having swallowed cum recently

julzor 5 years ago
parent
commit
64c343a0ae
1 changed files with 3 additions and 4 deletions
  1. 3 4
      locations/willpower.qsrc

+ 3 - 4
locations/willpower.qsrc

@@ -64,7 +64,6 @@ if $ARGS[0] = 'calc':
 	elseif sick > 1:
 	elseif sick > 1:
 		will_calc += 5
 		will_calc += 5
 	end
 	end
-
 end
 end
 
 
 if $ARGS[0] = 'hj':
 if $ARGS[0] = 'hj':
@@ -135,10 +134,10 @@ end
 if $ARGS[0] = 'swallow':
 if $ARGS[0] = 'swallow':
 	gs 'willpower', 'calc'
 	gs 'willpower', 'calc'
 	will_cost = 0
 	will_cost = 0
-	if trt_cumeater = 0:
-		will_cost = (10 + will_calc)/10
-	else
+	if trt_cumeater = 1 or cumloc[12] > 0:
 		will_cost = (100 + will_calc)/10
 		will_cost = (100 + will_calc)/10
+	else
+		will_cost = (10 + will_calc)/10
 	end
 	end
 end
 end