Browse Source

[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 years ago
parent
commit
dd6a3aa1f6
2 changed files with 2 additions and 5 deletions
  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':