Browse Source

[fixed] Link to wardrobe for resizing clothing was pointing at the wrong section and couldn't work, now points to clothing list which is what it should do

Kevin_Smarts 2 years ago
parent
commit
d1a83570bb
1 changed files with 1 additions and 11 deletions
  1. 1 11
      locations/sewing.qsrc

+ 1 - 11
locations/sewing.qsrc

@@ -12,6 +12,7 @@ if $ARGS[0] = 'start':
 	else
 		'You have no fabric left to use as material.'
 	end
+	if pcs_sewng < 50 and tkan >= 1: 'You can resize your own clothing when viewing items in the wardrobe list <a href="exec:gt ''clothing'', ''view_clothing_list'', ''wardrobe''">here</a>.'
 	act 'Leave':gt $loc, $loc_arg
 	act 'Practice sewing (0:30)':
 		minut += 30
@@ -68,17 +69,6 @@ if $ARGS[0] = 'start':
 			end
 		end
 	end
-	act 'Resize some of your clothes':
-		if tkan < 1:
-			msg'You don''t have any sewing materials left to do this. Maybe you should buy some more.'
-		else
-			if pcs_sewng < 50:
-				msg 'You aren''t good enough at sewing to do this.'
-			else
-				gt 'clothing', 'view_clothing_list', 'resize'
-			end
-		end
-	end
 end
 			
 --- sewing ---------------------------------