diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 8f9078ab8d..af0c0340c8 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -31,6 +31,8 @@
msg += "[src.name]!\n"
+ var/insuit_handled=0
+
//uniform
if(w_uniform && !(slot_w_uniform in obscured))
//Ties
@@ -44,6 +46,10 @@
msg += "[t_He] [t_is] wearing \icon[w_uniform] [w_uniform.gender==PLURAL?"some":"a"] blood-stained [w_uniform.name][tie_msg]!\n"
else
msg += "[t_He] [t_is] wearing \icon[w_uniform] \a [w_uniform][tie_msg].\n"
+ if(vore_insuit_datum.has_people())
+ msg += "There is a person-shaped bulge under the fabric!\n"
+ insuit_handled=1
+
//head
if(head)
@@ -65,6 +71,8 @@
msg += "[t_He] [t_is] carrying \icon[s_store] [s_store.gender==PLURAL?"some":"a"] blood-stained [s_store.name] on [t_his] [wear_suit.name]!\n"
else
msg += "[t_He] [t_is] carrying \icon[s_store] \a [s_store] on [t_his] [wear_suit.name].\n"
+ if(vore_insuit_datum.has_people()&&!insuit_handled)
+ msg += "The fabric is moving!\n"
//back
if(back)
@@ -246,6 +254,20 @@
msg += "[t_He] [t_is] plump and delicious looking - Like a fat little piggy. A tasty piggy.\n"
else
msg += "[t_He] [t_is] quite chubby.\n"
+ if( (vore_womb_datum.has_people()||vore_stomach_datum.has_people()) && !(slot_w_uniform in obscured) )
+ msg += "It seems [t_his] belly is shifting around slighty.\n"
+ if( (vore_breast_datum.has_people()||vore_breast_datum.digestion_count) && !(slot_w_uniform in obscured) )
+ msg += "It seems [t_his] breasts are heavy with milk.\n"
+ if( !(slot_w_uniform in obscured) && (!w_uniform||!(w_uniform.body_parts_covered&GROIN)) )
+ if(vore_cock_datum.has_people()||vore_cock_datum.digestion_count)
+ msg += "It looks like [t_his] cock is full.\n"
+ if(vore_balls_datum.has_people()||vore_balls_datum.digestion_count)
+ msg += "It looks like [t_his] balls are full.\n"
+ if(vore_tail_datum.has_people())
+ msg += "[t_He] has a bulge in [t_his] tail."
+ if(vore_tail_datum.transfer_factor)
+ msg += " It moves slowly toward the base."
+ msg += "\n"
if(blood_volume < BLOOD_VOLUME_SAFE)
msg += "[t_He] [t_has] pale skin.\n"
@@ -342,6 +364,8 @@
msg += "\[View comment log\] "
msg += "\[Add comment\]\n"
+ if(print_flavor_text()) msg += "[print_flavor_text()]\n"
+
msg += "*---------*"
user << msg