From b1fbd83bbde1073eb16ac34458dbc9d88bd2a011 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 21 Jan 2022 01:54:44 +0100 Subject: [PATCH] [MIRROR] Some costume and antag masks no longer have fov, like they didn't use to have tint. [MDB IGNORE] (#10850) * Some costume and antag masks no longer have fov, like they didn't use to have tint. (#63571) Syndicate, ninja, fugitive hunter masks and some costume masks (cyborg visor, plague doctor, carp, owl, monkey) no longer impair vision with field of vision cones. * Some costume and antag masks no longer have fov, like they didn't use to have tint. Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/modules/clothing/masks/gasmask.dm | 12 ++++++++++++ code/modules/ninja/suit/mask.dm | 1 + 2 files changed, 13 insertions(+) diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index c8133b67889..fe8974b74ed 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -156,6 +156,8 @@ icon_state = "plaguedoctor" inhand_icon_state = "gas_mask" armor = list(MELEE = 0, BULLET = 0, LASER = 2,ENERGY = 2, BOMB = 0, BIO = 75, FIRE = 0, ACID = 0) + has_fov = FALSE + flags_cover = MASKCOVERSEYES /obj/item/clothing/mask/gas/syndicate name = "syndicate mask" @@ -164,6 +166,7 @@ resistance_flags = FIRE_PROOF | ACID_PROOF strip_delay = 60 w_class = WEIGHT_CLASS_SMALL + has_fov = FALSE /obj/item/clothing/mask/gas/clown_hat name = "clown wig and mask" @@ -297,6 +300,7 @@ inhand_icon_state = "monkeymask" flags_cover = MASKCOVERSEYES resistance_flags = FLAMMABLE + has_fov = FALSE /obj/item/clothing/mask/gas/sexymime name = "sexy mime mask" @@ -314,6 +318,8 @@ desc = "Beep boop." icon_state = "death" resistance_flags = FLAMMABLE + has_fov = FALSE + flags_cover = MASKCOVERSEYES /obj/item/clothing/mask/gas/owl_mask name = "owl mask" @@ -322,11 +328,14 @@ clothing_flags = MASKINTERNALS flags_cover = MASKCOVERSEYES resistance_flags = FLAMMABLE + has_fov = FALSE /obj/item/clothing/mask/gas/carp name = "carp mask" desc = "Gnash gnash." icon_state = "carp_mask" + has_fov = FALSE + flags_cover = MASKCOVERSEYES /obj/item/clothing/mask/gas/tiki_mask name = "tiki mask" @@ -335,6 +344,8 @@ inhand_icon_state = "tiki_eyebrow" custom_materials = list(/datum/material/wood = MINERAL_MATERIAL_AMOUNT * 1.25) resistance_flags = FLAMMABLE + has_fov = FALSE + flags_cover = MASKCOVERSEYES max_integrity = 100 actions_types = list(/datum/action/item_action/adjust) dog_fashion = null @@ -380,6 +391,7 @@ inhand_icon_state = "hunter" resistance_flags = FIRE_PROOF | ACID_PROOF flags_inv = HIDEFACIALHAIR|HIDEFACE|HIDEEYES|HIDEEARS|HIDEHAIR|HIDESNOUT + has_fov = FALSE /obj/item/clothing/mask/gas/driscoll name = "driscoll mask" diff --git a/code/modules/ninja/suit/mask.dm b/code/modules/ninja/suit/mask.dm index 75b19e2b4a6..cb02bff1680 100644 --- a/code/modules/ninja/suit/mask.dm +++ b/code/modules/ninja/suit/mask.dm @@ -13,3 +13,4 @@ inhand_icon_state = "s-ninja_mask" strip_delay = 120 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF + has_fov = FALSE