From 54ee658a945c198b6a4bd309b9ef6d9d1ceac902 Mon Sep 17 00:00:00 2001 From: Jovan Date: Sat, 11 Mar 2017 16:50:13 -0500 Subject: [PATCH] mesies fix voxy stuff, yaya? --- .../research/xenoarchaeology/tools/anomaly_suit.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm index 9e9de74e73e..26786865009 100644 --- a/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm +++ b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm @@ -23,6 +23,12 @@ item_state = "cespace_suit" armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100) allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank) + + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/suit.dmi' + ) + sprite_sheets_obj = list( + "Vox" = 'icons/obj/clothing/species/vox/suits.dmi', + ) /obj/item/clothing/head/helmet/space/eva/anomaly name = "Excavation hood" @@ -30,3 +36,9 @@ icon_state = "cespace_helmet" item_state = "cespace_helmet" armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100) + sprite_sheets = list( + "Vox" = 'icons/mob/species/vox/helmet.dmi' + ) + sprite_sheets_obj = list( + "Vox" = 'icons/obj/clothing/species/vox/hats.dmi', + )