Browse Source

[fixed] Prostitute outfit shoes and bags should now change correctly

Kevin_Smarts 3 months ago
parent
commit
b300836adc
1 changed files with 6 additions and 2 deletions
  1. 6 2
      locations/prostitution_functions.qsrc

+ 6 - 2
locations/prostitution_functions.qsrc

@@ -463,14 +463,17 @@ if $ARGS[0] = 'change_into_prostitute_outfit':
 	lastwornbranumber['prostitute'] = brawornnumber
 	$lastwornshoetype['prostitute'] = $shoeworntype
 	lastwornshoenumber['prostitute'] = shoewornnumber
+	$lastwornpursetype['prostitute'] = $currentpursetype
+	lastworndefpursenumber['prostitute'] = currentpursenumber
 	!!-- Clothing
 	gs 'clothing', 'wear', $prostitute['clothingworntype'], prostitute['clothingwornnumber']
 	!!-- Underwear
 	gs 'panties', 'wear', $prostitute['pantyworntype'], prostitute['pantywornnumber']
 	gs 'bras', 'wear', $prostitute['braworntype'], prostitute['brawornnumber']
 	!!-- Shoes
-	gs 'shoes', 'strip'
 	gs 'shoes', 'wear', $prostitute['shoeworntype'], prostitute['shoewornnumber']
+	!!-- Bag
+	gs 'purses', 'wear', $prostitute['shoeworntype'], prostitute['shoewornnumber']
 
 !	!! TODO: Check for worn out here?
 
@@ -486,7 +489,8 @@ if $ARGS[0] = 'change_into_regular_clothes':
 	gs 'panties', 'wear', $lastwornpantytype['prostitute'], lastwornpantynumber['prostitute']
 	gs 'bras', 'wear', $lastwornbratype['prostitute'], lastwornbranumber['prostitute']
 	!!-- Shoes
-	gs 'shoes', 'wear', 'last_worn'
+	gs 'shoes', 'wear', '$lastwornshoetype['prostitute']', lastwornshoenumber['prostitute']
+	gs 'purses', 'wear', $lastwornpursetype['prostitute'], lastworndefpursenumber['prostitute']
 	gs 'prostitution_functions', 'work_clothes'
 	if prostitute['changed_for_work']: prostitute['changed_for_work'] = 0
 end