From e6ae35efd4fc9e042a33028f344060a1a8d8d893 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 15 Aug 2016 15:49:03 -0500 Subject: [PATCH 1/2] should fix the in-suit issue was well as missing flavor text. --- .../mob/living/carbon/human/examine.dm | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 8f9078ab8d..4c13309f4d 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,12 @@ 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" + 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 +73,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 +256,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 +366,8 @@ msg += "\[View comment log\] " msg += "\[Add comment\]\n" + if(print_flavor_text()) msg += "[print_flavor_text()]\n" + msg += "*---------*" user << msg From e722c485ca41bb0ee6a4224cf0e8361d2cf606be Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 15 Aug 2016 15:57:29 -0500 Subject: [PATCH 2/2] dupe fix --- code/modules/mob/living/carbon/human/examine.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 4c13309f4d..af0c0340c8 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -46,8 +46,6 @@ 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" - 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