浏览代码

[fixed] Removed the check in underwear that was preventing the none status from being set and the adding of zero status if wear was called. This was breaking the use of the removal/wear actions
[fixed] Tidied repeated variable and reversed logic

KevinSmarts 5 年之前
父节点
当前提交
dd6a3aa1f6
共有 2 个文件被更改,包括 2 次插入5 次删除
  1. 2 2
      locations/foto.qsrc
  2. 0 3
      locations/underwear.qsrc

+ 2 - 2
locations/foto.qsrc

@@ -81,7 +81,7 @@ if $ARGS[0] = 'start':
 	end
 
 	if $pantyworntype ! 'none' and pcs_inhib < 60:
-		if studio_strip_talk < 3 and $braworntype ! 'none' and pcs_inhib < 60:
+		if studio_strip_talk < 3:
 			act'Just strip to your panties':
 				gs 'clothing', 'strip'
 				cla & *clr
@@ -106,7 +106,7 @@ if $ARGS[0] = 'start':
 			end
 		end
 
-		if studio_strip_talk < 2 and pcs_inhib < 60:
+		if studio_strip_talk < 2 and $braworntype ! 'none':
 			act'Just strip to your underwear':
 				gs 'clothing', 'strip'
 				gs 'stat'

+ 0 - 3
locations/underwear.qsrc

@@ -10,7 +10,6 @@ if $ARGS[0] = 'dispose':
 end
 
 if $ARGS[0] = 'remove':
-	if $pantyworntype = 'none' and $braworntype = 'none':exit
 	if $pantyworntype = 'none':
 		panty_none = 1
 	else
@@ -26,8 +25,6 @@ end
 if $ARGS[0] = 'wear':
 	if panty_none = 0: gs 'panties', 'wear'
 	if bra_none = 0: gs 'bras', 'wear'
-	panty_none = 0
-	bra_none = 0
 end
 
 if $ARGS[0] = 'dresser':