mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
this is probaby better
This commit is contained in:
@@ -164,7 +164,7 @@
|
|||||||
if(LAZYLEN(internal_organs) && (user.client?.prefs.cit_toggles & GENITAL_EXAMINE))
|
if(LAZYLEN(internal_organs) && (user.client?.prefs.cit_toggles & GENITAL_EXAMINE))
|
||||||
for(var/obj/item/organ/genital/dicc in internal_organs)
|
for(var/obj/item/organ/genital/dicc in internal_organs)
|
||||||
if(istype(dicc) && dicc.is_exposed())
|
if(istype(dicc) && dicc.is_exposed())
|
||||||
. += "[dicc.desc][length(dicc.writtentext) ? " The phrase \"[html_encode(dicc.writtentext)]\" is written on it" : ""]"
|
. += "[dicc.desc]"
|
||||||
if(user.client?.prefs.cit_toggles & VORE_EXAMINE)
|
if(user.client?.prefs.cit_toggles & VORE_EXAMINE)
|
||||||
var/cursed_stuff = attempt_vr(src,"examine_bellies",args) //vore Code
|
var/cursed_stuff = attempt_vr(src,"examine_bellies",args) //vore Code
|
||||||
if(cursed_stuff)
|
if(cursed_stuff)
|
||||||
@@ -389,6 +389,9 @@
|
|||||||
if(!w_uniform)
|
if(!w_uniform)
|
||||||
var/obj/item/bodypart/BP = X
|
var/obj/item/bodypart/BP = X
|
||||||
msg += "<span class='notice'>[capitalize(t_He)] has \"[html_encode(BP.writtentext)]\" written on [t_his] [BP.name].</span>\n"
|
msg += "<span class='notice'>[capitalize(t_He)] has \"[html_encode(BP.writtentext)]\" written on [t_his] [BP.name].</span>\n"
|
||||||
|
for(var/obj/item/organ/genital/G in internal_organs)
|
||||||
|
if(length(G.writtentext) && istype(G) && G.is_exposed())
|
||||||
|
msg += "<span class='notice'>[capitalize(t_He)] has \"[html_encode(G.writtentext)]\" written on [t_his] [G.name].</span>\n"
|
||||||
|
|
||||||
if(isliving(user))
|
if(isliving(user))
|
||||||
var/mob/living/L = user
|
var/mob/living/L = user
|
||||||
|
|||||||
@@ -4,5 +4,6 @@
|
|||||||
var/mob/living/carbon/human/H = L
|
var/mob/living/carbon/human/H = L
|
||||||
for(var/obj/item/bodypart/BP in H.bodyparts)
|
for(var/obj/item/bodypart/BP in H.bodyparts)
|
||||||
BP.writtentext = ""
|
BP.writtentext = ""
|
||||||
for(var/obj/item/organ/genital/G in H.exposed_genitals)
|
for(var/obj/item/organ/genital/G in H.internal_organs)
|
||||||
G.writtentext = ""
|
if(istype(G) && G.is_exposed())
|
||||||
|
G.writtentext = ""
|
||||||
|
|||||||
Reference in New Issue
Block a user