diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index deedbe0a04..8ae13a2930 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -74,7 +74,7 @@ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") /datum/gear/accessory/khcrystal - display_name = "KH Life Crystal" + display_name = "Life Crystal" path = /obj/item/weapon/storage/box/khcrystal description = "A small necklace device that will notify an offsite cloning facility should you expire after activating it." diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm index dc4d75e16e..2a122f9281 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm @@ -61,7 +61,7 @@ humanform = H updatehealth() refactory = locate() in humanform.internal_organs - //verbs |= /mob/living/proc/ventcrawl YAWN Edit: Too OP + verbs |= /mob/living/proc/ventcrawl verbs |= /mob/living/proc/hide else update_icon() diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index 1d22c4056b..67a7ecf57f 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -56,7 +56,7 @@ mob_size = MOB_SMALL pass_flags = PASSTABLE holder_type = /obj/item/weapon/holder/human -// short_sighted = 1 + short_sighted = 1 gluttonous = 1 blood_volume = 400 hunger_factor = 0.2 @@ -228,3 +228,9 @@ if(ms != "") H << ms H.next_loneliness_time = world.time+500 + +/datum/species/teshari/get_vision_flags(var/mob/living/carbon/human/H) + if(!(H.sdisabilities & DEAF) && !H.ear_deaf) + return SEE_SELF|SEE_MOBS + else + return SEE_SELF \ No newline at end of file