From 546de503d0f9af67d0d30cdb8fb6b672c48f33df Mon Sep 17 00:00:00 2001 From: Cebutris Date: Wed, 22 Jan 2020 03:03:34 -0500 Subject: [PATCH 1/2] remove kh --- .../client/preference_setup/loadout/loadout_accessories_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." From 5a9ab0a62a90bc979644f570fc024a116751f154 Mon Sep 17 00:00:00 2001 From: Repede Date: Thu, 23 Jan 2020 18:17:15 -0500 Subject: [PATCH 2/2] Makes Teshari able to "see" (IC: Hear) people through walls, but as a drawback, are always near-sighted. A deaf teshari cannot see mobs through walls, they are still near-sighted though. Also re-adds ventcrawling for protean blobs. --- .../human/species/station/protean_vr/protean_blob.dm | 2 +- .../mob/living/carbon/human/species/station/seromi.dm | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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