From daa2b077c79a7ff64e14ac08dd1106b5c3d6fe69 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 21 Feb 2021 15:17:42 +0100 Subject: [PATCH] [MIRROR] Fixed a type in gauze falling off message (#3558) * Fixed a type in gauze falling off message (#57047) Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com> * Fixed a type in gauze falling off message Co-authored-by: Dax Dupont Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com> --- code/modules/surgery/bodyparts/_bodyparts.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 137b1fab851..c3bbe01ebab 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -964,7 +964,7 @@ /* if(!LAZYLEN(wounds) && current_gauze && !replaced) // no more wounds = no need for the gauze anymore - owner.visible_message("\The [current_gauze] on [owner]'s [name] fall away.", "The [current_gauze] on your [name] fall away.") + owner.visible_message("\The [current_gauze] on [owner]'s [name] falls away.", "The [current_gauze] on your [name] falls away.") QDEL_NULL(current_gauze) */ @@ -1030,7 +1030,7 @@ /** * seep_gauze() is for when a gauze wrapping absorbs blood or pus from wounds, lowering its absorption capacity. * - * The passed amount of seepage is deducted from the bandage's absorption capacity, and if we reach a negative absorption capacity, the bandages fall off and we're left with nothing. + * The passed amount of seepage is deducted from the bandage's absorption capacity, and if we reach a negative absorption capacity, the bandages falls off and we're left with nothing. * * Arguments: * * seep_amt - How much absorption capacity we're removing from our current bandages (think, how much blood or pus are we soaking up this tick?) @@ -1041,7 +1041,7 @@ return current_gauze.absorption_capacity -= seep_amt if(current_gauze.absorption_capacity <= 0) - owner.visible_message("\The [current_gauze] on [owner]'s [name] fall away in rags.", "\The [current_gauze] on your [name] fall away in rags.", vision_distance=COMBAT_MESSAGE_RANGE) + owner.visible_message("\The [current_gauze] on [owner]'s [name] falls away in rags.", "\The [current_gauze] on your [name] falls away in rags.", vision_distance=COMBAT_MESSAGE_RANGE) QDEL_NULL(current_gauze) SEND_SIGNAL(src, COMSIG_BODYPART_GAUZE_DESTROYED) */