You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: code/modules/mob/living/carbon/human/examine.dm
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
var/t_is= p_are()
14
14
var/obscure_name
15
15
var/robotic=FALSE//robotic mobs look different under certain circumstances
16
-
if(mob_biotypes &MOB_ROBOTIC)//please someone tell me this is stupid and i can do it all in one line
16
+
if(mob_biotypes &MOB_ROBOTIC&&!HAS_TRAIT(src, TRAIT_DISGUISED)) //if someone's trying to disguise, always use the default text, it's less obvious because people are used to it
17
17
robotic =TRUE
18
18
19
19
if(isliving(user))
@@ -489,14 +489,14 @@
489
489
// What examine_tgui.dm uses to determine if flavor text appears as "Obscured".
var/list/blacklisted_species=list(/datum/species/ethereal, /datum/species/moth, /datum/species/gorilla)//species that really don't work with this system (lizards aren't quite right either, but whatever)
442
+
var/list/blacklisted_species=list(
443
+
/datum/species/ethereal, //glow
444
+
/datum/species/moth, //wings
445
+
/datum/species/gorilla, //breaks human shapes
446
+
/datum/species/vox, //has weird clothing
447
+
/datum/species/abductor //not exactly sneaky
448
+
)//species that really don't work with this system (lizards aren't quite right either, but whatever)
0 commit comments