Browse Source

[fixed] 2 instances of 'school' that should be 'gm_school' in 'wardrobe' spotted by Terlis2000

KevinSmarts 3 years ago
parent
commit
df6dd4da70
1 changed files with 2 additions and 2 deletions
  1. 2 2
      locations/wardrobe.qsrc

+ 2 - 2
locations/wardrobe.qsrc

@@ -192,7 +192,7 @@ if $ARGS[0] = 'default_entry_wear':
 	defaultcoat = defcoat[default_entry]
 
 	!! default school girl uniform is always allowed to be worn if still in school
-	if StoryLine = 1 and SchoolAtestat = 0 and SchoolBlock = 0 and $defclothingtype[default_entry] = 'school' and defclothingnumber[default_entry] = 6:
+	if StoryLine = 1 and SchoolAtestat = 0 and SchoolBlock = 0 and $defclothingtype[default_entry] = 'gm_school' and defclothingnumber[default_entry] = 6:
 		cls
 		'<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
 		'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
@@ -577,7 +577,7 @@ if $ARGS[0] = 'school_outfit':
 	! if no uniform found or the one selected is worn out, use the default one
 	if schtype = 0 or dyneval('RESULT = <<$schbrand>>_h[<<schtype>>]') <= 0:
 		schtype = 6
-		$schbrand = 'school'
+		$schbrand = 'gm_school'
 	end
 	gs 'clothing', 'wear', $schbrand, schtype
 end