Another spelling fix in surgery (#12885)

Fixed misspelling in surgery saw fail step
This commit is contained in:
Nokko
2020-01-07 11:46:47 -08:00
committed by variableundefined
parent f9171913c8
commit cf2145a953
+4 -4
View File
@@ -1,7 +1,7 @@
//Procedures in this file: Gneric surgery steps
//////////////////////////////////////////////////////////////////
//Procedures in this file: Generic surgery steps
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// COMMON STEPS //
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/datum/surgery_step/generic/
can_infect = 1
@@ -237,7 +237,7 @@
/datum/surgery_step/generic/amputate/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool,datum/surgery/surgery)
var/obj/item/organ/external/affected = target.get_organ(target_zone)
user.visible_message("<span class='warning'> [user]'s hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!</span>", \
"<span class='warning'> Your hand slips, sawwing through the bone in [target]'s [affected.name] with \the [tool]!</span>")
"<span class='warning'> Your hand slips, sawing through the bone in [target]'s [affected.name] with \the [tool]!</span>")
affected.receive_damage(30)
affected.fracture()
return 0