浏览代码

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

julzor 5 年之前
父节点
当前提交
64c343a0ae
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      locations/willpower.qsrc

+ 3 - 4
locations/willpower.qsrc

@@ -64,7 +64,6 @@ if $ARGS[0] = 'calc':
 	elseif sick > 1:
 		will_calc += 5
 	end
-
 end
 
 if $ARGS[0] = 'hj':
@@ -135,10 +134,10 @@ end
 if $ARGS[0] = 'swallow':
 	gs 'willpower', 'calc'
 	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
+	else
+		will_cost = (10 + will_calc)/10
 	end
 end