diff --git a/code/modules/client/preference_setup/vore/02_size.dm b/code/modules/client/preference_setup/vore/02_size.dm index 9a6e7fdf27..ca6b87c5fc 100644 --- a/code/modules/client/preference_setup/vore/02_size.dm +++ b/code/modules/client/preference_setup/vore/02_size.dm @@ -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) diff --git a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm index e6f40a2cf1..e79a7b2079 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm @@ -3,7 +3,7 @@ desc = "Hiss!" icon_state = "xenohunter" icon_living = "xenohunter" - icon_dead = "xenohunter-dead" + icon_dead = "xenohunter_dead" icon_gib = "gibbed-a" response_help = "pokes" response_disarm = "shoves" @@ -39,7 +39,7 @@ name = "alien drone" icon_state = "xenodrone" icon_living = "xenodrone" - icon_dead = "xenodrone-dead" + icon_dead = "xenodrone_dead" health = 60 melee_damage_lower = 15 melee_damage_upper = 15 @@ -48,7 +48,7 @@ name = "alien sentinel" icon_state = "xenosentinel" icon_living = "xenosentinel" - icon_dead = "xenosentinel-dead" + icon_dead = "xenosentinel_dead" health = 120 melee_damage_lower = 30 // Buffed from 15 since vore doesn't work for ranged mobs. melee_damage_upper = 30 @@ -61,7 +61,7 @@ name = "alien queen" icon_state = "xenoqueen" icon_living = "xenoqueen" - icon_dead = "xenoqueen-dead" + icon_dead = "xenoqueen_dead" maxHealth = 250 melee_damage_lower = 30 // Buffed from 15 since vore doesn't work for ranged mobs. melee_damage_upper = 30