Some fixes.

- Fixes alien mobs being invisible.
- Alters weight rate messages to be clearer.
This commit is contained in:
Spades
2017-01-02 03:38:20 -05:00
parent 51ecc03a67
commit 0157cc7049
2 changed files with 6 additions and 6 deletions
@@ -77,7 +77,7 @@
else if(href_list["weight_gain"])
var/weight_gain_rate = input(user, "Choose your character's rate of weight gain between 100% \
(full realism body fat gain) and 0% (no body fat gain).\n\
(Due to a small bug, if you want to disable weight gain, set this to 0.01 for now.)\
(If you want to disable weight gain, set this to 0.01 to round it to 0%.)\
([WEIGHT_CHANGE_MIN]-[WEIGHT_CHANGE_MAX])", "Character Preference") as num|null
if(weight_gain_rate)
pref.weight_gain = round(text2num(weight_gain_rate),1)
@@ -86,7 +86,7 @@
else if(href_list["weight_loss"])
var/weight_loss_rate = input(user, "Choose your character's rate of weight loss between 100% \
(full realism body fat loss) and 0% (no body fat loss).\n\
(Due to a small bug, if you want to disable weight loss, set this to 0.01 for now.)\
(If you want to disable weight loss, set this to 0.01 round it to 0%.)\
([WEIGHT_CHANGE_MIN]-[WEIGHT_CHANGE_MAX])", "Character Preference") as num|null
if(weight_loss_rate)
pref.weight_loss = round(text2num(weight_loss_rate),1)