Browse Source

[changed] Very conservative clothing no longer tagged as being daring to wear

KevinSmarts 4 years ago
parent
commit
fd5580a840
2 changed files with 6 additions and 2 deletions
  1. 3 1
      locations/clothing.qsrc
  2. 3 1
      locations/clothing_QV.qsrc

+ 3 - 1
locations/clothing.qsrc

@@ -422,7 +422,9 @@ if $ARGS[0] = 'view_clothing_item':
 
 	if CloStyle = 4:'This outfit can be used for prostitution.'
 
-	if CloInhibit + 10 > pcs_inhib and CloInhibit <= pcs_inhib: 'You find this outfit more revealing than you are completely comfortable with but that makes it quite exciting too.'
+	if CloInhibit > 10:
+		if CloInhibit + 10 > pcs_inhib and CloInhibit <= pcs_inhib: 'You find this outfit more revealing than you are completely comfortable with but that makes it quite exciting too.'
+	end
 
 	if $ARGS[2] = 'uniform':
 		if CloStyle2 = 1:

+ 3 - 1
locations/clothing_QV.qsrc

@@ -499,7 +499,9 @@ if $ARGS[0] = 'change':
 	elseif ARRPOS('$CloLosTyp', $ARGS[1]) ! -1 and ARRPOS('CloLosNum',ARGS[2]) ! -1 :
 		'You lost these clothes somewhere, maybe you can find them again?.'
 	else
-		if CloInhibit + 10 > pcs_inhib: 'You find this outfit more revealing than you are completely comfortable with but that makes it quite exciting too.'
+		if CloInhibit > 10:
+			if CloInhibit + 10 > pcs_inhib: 'You find this outfit more revealing than you are completely comfortable with but that makes it quite exciting too.'
+		end
 		act 'Wear this outfit':
 			gs 'clothing', 'wear', $ARGS[1], ARGS[2]