diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 8733c16023..6c7f506073 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -34,6 +34,11 @@ sort_category = "Xenowear" whitelisted = "Vox" +/datum/gear/mask/transparent + display_name = "transparent breath mask" + path = /obj/item/clothing/mask/breath/transparent + sort_category = "Xenowear" + /datum/gear/uniform/loincloth display_name = "loincloth" path = /obj/item/clothing/suit/storage/fluff/loincloth diff --git a/code/modules/clothing/masks/breath_vr.dm b/code/modules/clothing/masks/breath_vr.dm new file mode 100644 index 0000000000..9f6016d948 --- /dev/null +++ b/code/modules/clothing/masks/breath_vr.dm @@ -0,0 +1,4 @@ +/obj/item/clothing/mask/breath/transparent + name = "transparent breath mask" + item_state = "golem" //This is dumb and hacky but was here when I got here. + sprite_sheets = list() diff --git a/vorestation.dme b/vorestation.dme index a46f330037..efd36cf430 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1664,6 +1664,7 @@ #include "code\modules\clothing\head\solgov_vr.dm" #include "code\modules\clothing\masks\boxing.dm" #include "code\modules\clothing\masks\breath.dm" +#include "code\modules\clothing\masks\breath_vr.dm" #include "code\modules\clothing\masks\gasmask.dm" #include "code\modules\clothing\masks\gasmask_vr.dm" #include "code\modules\clothing\masks\miscellaneous.dm"