diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 5ed24af726..b81657c405 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -66,7 +66,7 @@ proc/get_top_level_mob(var/mob/S) if(!M.client || isnewplayer(M)) continue var/T = get_turf(src) - if(M.stat == DEAD && M.client && (M.client.prefs.chat_toggles & CHAT_GHOSTSIGHT) && !(M in viewers(T, null))) + if(M.stat == DEAD && M.client && (M.client.prefs.chat_toggles & CHAT_GHOSTSIGHT) && !(M in viewers(T, null)) && (user.client)) //SKYRAT CHANGE - only user controlled mobs show their emotes to all-seeing ghosts, to reduce chat spam M.show_message(message) if(emote_type == EMOTE_AUDIBLE) diff --git a/sandcode/code/modules/clothing/refactor.dm b/sandcode/code/modules/clothing/refactor.dm new file mode 100644 index 0000000000..2bce416d75 --- /dev/null +++ b/sandcode/code/modules/clothing/refactor.dm @@ -0,0 +1,11 @@ +/obj/item/clothing/suit/armor/vest/warden + mutantrace_variation = STYLE_DIGITIGRADE|STYLE_ALL_TAURIC + taur_mob_worn_overlay = 'sandcode/icons/mob/suits_taur.dmi' + +/obj/item/clothing/suit/hooded/techpriest + mutantrace_variation = STYLE_DIGITIGRADE|STYLE_ALL_TAURIC + taur_mob_worn_overlay = 'sandcode/icons/mob/suits_taur.dmi' + +/obj/item/clothing/suit/hooded/techpriest_t + mutantrace_variation = STYLE_DIGITIGRADE|STYLE_ALL_TAURIC + taur_mob_worn_overlay = 'sandcode/icons/mob/suits_taur.dmi' diff --git a/sandcode/icons/mob/suits_taur.dmi b/sandcode/icons/mob/suits_taur.dmi new file mode 100644 index 0000000000..a0c9f30478 Binary files /dev/null and b/sandcode/icons/mob/suits_taur.dmi differ diff --git a/tgstation.dme b/tgstation.dme index dbf8a1b49f..245b9ca186 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3515,6 +3515,7 @@ #include "sandcode\code\game\objects\items\storage\bags.dm" #include "sandcode\code\modules\atmospherics\machinery\pipes\bluespace.dm" #include "sandcode\code\modules\cargo\packs\emergency.dm" +#include "sandcode\code\modules\clothing\refactor.dm" #include "sandcode\code\modules\clothing\masks\miscellaneous.dm" #include "sandcode\code\modules\clothing\outfits\standard.dm" #include "sandcode\code\modules\crafting\recipes\recipes_misc.dm"