diff --git a/code/game/objects/items/weapons/tools/weldingtool.dm b/code/game/objects/items/weapons/tools/weldingtool.dm index b372ae1917a..8fbd4fe4d44 100644 --- a/code/game/objects/items/weapons/tools/weldingtool.dm +++ b/code/game/objects/items/weapons/tools/weldingtool.dm @@ -79,21 +79,21 @@ if(S.organ_tag == BP_HEAD) if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space)) to_chat(user, "You can't apply [src] through [H.head]!") - return 1 + return TRUE else if(H.wear_suit && istype(H.wear_suit,/obj/item/clothing/suit/space)) to_chat(user, "You can't apply [src] through [H.wear_suit]!") - return 1 + return TRUE if(!welding) to_chat(user, "You'll need to turn [src] on to patch the damage on [H]'s [S.name]!") - return 1 + return TRUE if(S.robo_repair(15, BRUTE, "some dents", src, user)) remove_fuel(1, user) - return 1 + return TRUE else - return 1 //Stops you from accidentally harming someone while on help intent. + return TRUE //Stops you from accidentally harming someone while on help intent. return ..() diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 4460c5bb55e..0c85e2aa276 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -461,11 +461,12 @@ if("omni")src.heal_damage(repair_amount, repair_amount, 0, 1) if(damage_desc) + var/fix_verb = (damage_amount > repair_amount) ? "patches" : "finishes patching" if(user == src.owner) var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message("\The [user] patches [damage_desc] on [T.his] [src.name] with [tool].") + user.visible_message("\The [user] [fix_verb] [damage_desc] on [T.his] [src.name] with [tool].") else - user.visible_message("\The [user] patches [damage_desc] on [owner]'s [src.name] with [tool].") + user.visible_message("\The [user] [fix_verb] [damage_desc] on [owner]'s [src.name] with [tool].") return 1 @@ -1416,4 +1417,4 @@ Note that amputating the affected organ does in fact remove the infection from t for(var/M in markings) var/datum/sprite_accessory/marking/mark = markings[M]["datum"] if(mark.hide_body_parts && (organ_tag in mark.hide_body_parts)) - return 1 \ No newline at end of file + return 1