Browse Source

[fixed] Instead of only setting your starting mass distribution to genetic (which works for the range of body mass >= 50 and body mass <= 60), or as determined by your starting weight (wich works better in every other case), we now use the appropriate value which should prevent any sudden changes at the start.

anjuna krokus 6 months ago
parent
commit
9bc62a1dd6
1 changed files with 6 additions and 2 deletions
  1. 6 2
      locations/body.qsrc

+ 6 - 2
locations/body.qsrc

@@ -942,8 +942,12 @@ if $ARGS[0] = 'initial':
 	if pcs_mass['bust_gen'] = 0: pcs_mass['bust_gen'] = 12
 	if pcs_mass['butt_gen'] = 0: pcs_mass['butt_gen'] = 20
 
-	pcs_mass['bust'] = pcs_mass['bust_gen']
-	pcs_mass['butt'] = pcs_mass['butt_gen']
+	if pcs_mass['body'] >= 50 and pcs_mass['body'] <= 60:
+		pcs_mass['bust'] = pcs_mass['bust_gen']
+		pcs_mass['butt'] = pcs_mass['butt_gen']
+	else
+		gs 'body', 'Set_mass_distribution_using_body', pcs_mass['body']
+	end
 
 	agilbuf = pcs_agil
 	strenbuf = pcs_stren