Browse Source

[fixed] exorcised the underwear ghost that was making changing room exits an underwear randomizer.

Kevin_Smarts 1 year ago
parent
commit
5567a2ab0b
2 changed files with 12 additions and 2 deletions
  1. 6 1
      locations/moncheri.qsrc
  2. 6 1
      locations/shop_fashionista.qsrc

+ 6 - 1
locations/moncheri.qsrc

@@ -41,6 +41,7 @@ if $ARGS[0] = 'start':
 			*clr & cla
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/fashionista/underwear.jpg"</center>'
 			gs 'clothing', 'strip'
+			changingroom_underwear = 1
 			gs 'moncheri', 'changingroom', 1
 		end
 	end
@@ -97,7 +98,11 @@ end
 
 if $ARGS[0] = 'changingend':
 	!! Sveta dresses again
-	if $pantyworntype = 'none': gs 'underwear', 'wear'
+	if changingroom_underwear = 1:
+		changingroom_underwear = 0
+	else
+		gs 'underwear', 'wear'
+	end
 	gs 'clothing', 'wear_last_worn'
 	gt 'moncheri', 'start'
 end

+ 6 - 1
locations/shop_fashionista.qsrc

@@ -33,6 +33,7 @@ if $ARGS[0] = 'start':
 			*clr & cla
 			'<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/fashionista/underwear.jpg"</center>'
 			gs 'clothing', 'strip'
+			changingroom_underwear = 1
 			gs 'shop_fashionista', 'changingroom', 1
 		end
 	end
@@ -281,7 +282,11 @@ end
 
 if $ARGS[0] = 'changingend':
 	!! Sveta dresses again
-	gs 'underwear', 'wear'
+	if changingroom_underwear = 1:
+		changingroom_underwear = 0
+	else
+		gs 'underwear', 'wear'
+	end
 	gs 'clothing', 'wear_last_worn'
 	gt 'shop_fashionista', 'start'
 end