diff --git a/code/game/objects/items/devices/modkit.dm b/code/game/objects/items/devices/modkit.dm index e32bdf764cd..0be6a9cd728 100644 --- a/code/game/objects/items/devices/modkit.dm +++ b/code/game/objects/items/devices/modkit.dm @@ -11,7 +11,9 @@ var/list/permitted_types = list( /obj/item/clothing/head/helmet/space/rig, - /obj/item/clothing/suit/space/rig + /obj/item/clothing/suit/space/rig, + /obj/item/clothing/head/helmet/space/void, + /obj/item/clothing/suit/space/void ) /obj/item/device/modkit/afterattack(obj/O, mob/user as mob, proximity) diff --git a/code/modules/clothing/spacesuits/rig/modules/utility.dm b/code/modules/clothing/spacesuits/rig/modules/utility.dm index e0361326316..4afb4bd5a75 100644 --- a/code/modules/clothing/spacesuits/rig/modules/utility.dm +++ b/code/modules/clothing/spacesuits/rig/modules/utility.dm @@ -448,6 +448,7 @@ interface_name = "mounted welding fuel tank" interface_desc = "A minitaure fuel tank used for storage of welding fuel, built into a hardsuit." engage_string = "Dispense fuel" + usable = 1 var/max_fuel = 300 @@ -472,6 +473,8 @@ fill_welder(W) else holder.wearer << "Your welding tank is out of fuel!" + else + holder.wearer << "You need to have a welding tool in one of your hands to dispense fuel." /obj/item/rig_module/welding_tank/proc/fill_welder(var/obj/item/weapon/weldingtool/W) if(!istype(W)) @@ -480,6 +483,7 @@ if(reagents) if(get_fuel() >= W.max_fuel) reagents.trans_to(W, W.max_fuel) + holder.wearer << "Your [holder] dispenses some of the contents of the welding fuel tank into \the [W]." else reagents.trans_to(W, W.max_fuel) holder.wearer << "You hear a faint dripping as your hardsuit welding tank completely empties." diff --git a/icons/mob/species/skrell/helmet.dmi b/icons/mob/species/skrell/helmet.dmi index 4f1375dec30..91456b5d203 100644 Binary files a/icons/mob/species/skrell/helmet.dmi and b/icons/mob/species/skrell/helmet.dmi differ diff --git a/icons/mob/species/tajaran/helmet.dmi b/icons/mob/species/tajaran/helmet.dmi index 45e770862da..5fd99d65ec5 100644 Binary files a/icons/mob/species/tajaran/helmet.dmi and b/icons/mob/species/tajaran/helmet.dmi differ diff --git a/icons/mob/species/tajaran/suit.dmi b/icons/mob/species/tajaran/suit.dmi index 0bcb534a52b..61e69d48a1e 100644 Binary files a/icons/mob/species/tajaran/suit.dmi and b/icons/mob/species/tajaran/suit.dmi differ diff --git a/icons/mob/species/unathi/helmet.dmi b/icons/mob/species/unathi/helmet.dmi index a87c73fb948..165fe68157d 100644 Binary files a/icons/mob/species/unathi/helmet.dmi and b/icons/mob/species/unathi/helmet.dmi differ diff --git a/icons/mob/species/unathi/suit.dmi b/icons/mob/species/unathi/suit.dmi index afba33bfde6..e0d32323ebf 100644 Binary files a/icons/mob/species/unathi/suit.dmi and b/icons/mob/species/unathi/suit.dmi differ