diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 2e02dcfb4e6..142bf0be111 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -333,6 +333,7 @@ name = "industrial welding tool" desc = "A slightly larger welder with a larger tank." icon_state = "indwelder" + inhand_icon_state = "indwelder" max_fuel = 40 custom_materials = list(/datum/material/glass=SMALL_MATERIAL_AMOUNT*0.6) @@ -353,6 +354,7 @@ name = "emergency welding tool" desc = "A miniature welder used during emergencies." icon_state = "miniwelder" + inhand_icon_state = "miniwelder" max_fuel = 10 w_class = WEIGHT_CLASS_TINY custom_materials = list(/datum/material/iron=SMALL_MATERIAL_AMOUNT*0.3, /datum/material/glass=SMALL_MATERIAL_AMOUNT*0.1) @@ -369,6 +371,7 @@ desc = "An alien welding tool. Whatever fuel it uses, it never runs out." icon = 'icons/obj/antags/abductor.dmi' icon_state = "welder" + inhand_icon_state = "abductorwelder" toolspeed = 0.1 custom_materials = list(/datum/material/iron =SHEET_MATERIAL_AMOUNT * 2.5, /datum/material/silver = SHEET_MATERIAL_AMOUNT*1.25, /datum/material/plasma =SHEET_MATERIAL_AMOUNT * 2.5, /datum/material/titanium =SHEET_MATERIAL_AMOUNT, /datum/material/diamond =SHEET_MATERIAL_AMOUNT) light_system = NO_LIGHT_SUPPORT diff --git a/icons/mob/inhands/equipment/tools_lefthand.dmi b/icons/mob/inhands/equipment/tools_lefthand.dmi index dcf559dcfb7..c8936fde8da 100644 Binary files a/icons/mob/inhands/equipment/tools_lefthand.dmi and b/icons/mob/inhands/equipment/tools_lefthand.dmi differ diff --git a/icons/mob/inhands/equipment/tools_righthand.dmi b/icons/mob/inhands/equipment/tools_righthand.dmi index 4b29e306633..192413a739f 100644 Binary files a/icons/mob/inhands/equipment/tools_righthand.dmi and b/icons/mob/inhands/equipment/tools_righthand.dmi differ