Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 7cef28c

Browse files
fixed IPC repair
1 parent e9bfc21 commit 7cef28c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/game/objects/items.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ GLOBAL_VAR_INIT(rpg_loot_items, FALSE)
11811181
#define ROBO_LIMB_HEAL_OTHER 1 SECONDS
11821182

11831183
/obj/item/proc/heal_robo_limb(obj/item/I, mob/living/carbon/human/H, mob/user, brute_heal = 0, burn_heal = 0, amount = 0, volume = 0)
1184-
if(I.use_tool(H, user, (H == user) ? ROBO_LIMB_HEAL_SELF : ROBO_LIMB_HEAL_OTHER, amount, volume, null, TRUE))
1184+
if(I.use_tool(H, user, (H == user) ? ROBO_LIMB_HEAL_SELF : ROBO_LIMB_HEAL_OTHER, amount, volume, null, skill_check = SKILL_MECHANICAL))
11851185
if(item_heal_robotic(H, user, brute_heal, burn_heal))
11861186
return heal_robo_limb(I, H, user, brute_heal, burn_heal, amount, volume)
11871187
return TRUE

0 commit comments

Comments
 (0)