From 9d237ae588e80dfd53df6228e924d17997e0369d Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Sat, 30 Nov 2024 05:18:10 +0300 Subject: [PATCH] Fix advanced leg name (#88273) ## About The Pull Request Fixes printed advanced robotic right leg name, instead of it being "heavy" ## Why It's Good For The Game Bugfix good ## Changelog :cl: fix: Printed advanced robotic right leg now has correct name, instead of being "heavy" /:cl: --- code/modules/surgery/bodyparts/robot_bodyparts.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/robot_bodyparts.dm b/code/modules/surgery/bodyparts/robot_bodyparts.dm index d9e25302ad7..3e42535ab10 100644 --- a/code/modules/surgery/bodyparts/robot_bodyparts.dm +++ b/code/modules/surgery/bodyparts/robot_bodyparts.dm @@ -574,7 +574,7 @@ body_damage_coeff = LIMB_BODY_DAMAGE_COEFFICIENT_ADVANCED /obj/item/bodypart/leg/right/robot/advanced - name = "heavy robotic right leg" + name = "advanced robotic right leg" desc = "An advanced cybernetic leg, capable of greater feats of strength and durability." icon_static = 'icons/mob/augmentation/advanced_augments.dmi' icon = 'icons/mob/augmentation/advanced_augments.dmi'