mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
should fix the in-suit issue was well as missing flavor text.
This commit is contained in:
@@ -31,6 +31,8 @@
|
||||
|
||||
msg += "<EM>[src.name]</EM>!\n"
|
||||
|
||||
var/insuit_handled=0
|
||||
|
||||
//uniform
|
||||
if(w_uniform && !(slot_w_uniform in obscured))
|
||||
//Ties
|
||||
@@ -44,6 +46,12 @@
|
||||
msg += "<span class='warning'>[t_He] [t_is] wearing \icon[w_uniform] [w_uniform.gender==PLURAL?"some":"a"] blood-stained [w_uniform.name][tie_msg]!</span>\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 += "<span class='warning'>There is a person-shaped bulge under the fabric!</span>\n"
|
||||
insuit_handled=1
|
||||
|
||||
|
||||
//head
|
||||
if(head)
|
||||
@@ -65,6 +73,8 @@
|
||||
msg += "<span class='warning'>[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]!</span>\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 += "<span class='warning'>The fabric is moving!</span>\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 += "<a href='?src=\ref[src];hud=s;view_comment=1'>\[View comment log\]</a> "
|
||||
msg += "<a href='?src=\ref[src];hud=s;add_comment=1'>\[Add comment\]</a>\n"
|
||||
|
||||
if(print_flavor_text()) msg += "[print_flavor_text()]\n"
|
||||
|
||||
msg += "*---------*</span>"
|
||||
|
||||
user << msg
|
||||
|
||||
Reference in New Issue
Block a user