From f016d51f388aa3646f32322cef9427ebdc39a8a4 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Mon, 18 May 2015 06:15:09 +0300 Subject: [PATCH] Fixes cavity surgery using old organ names --- code/modules/surgery/implant.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/surgery/implant.dm b/code/modules/surgery/implant.dm index df394fcd433..f660061ccc9 100644 --- a/code/modules/surgery/implant.dm +++ b/code/modules/surgery/implant.dm @@ -16,9 +16,9 @@ switch (affected.name) if ("head") return 1 - if ("chest") + if ("upper body") return 3 - if ("groin") + if ("lower body") return 2 return 0 @@ -26,9 +26,9 @@ switch (affected.name) if ("head") return "cranial" - if ("chest") + if ("upper body") return "thoracic" - if ("groin") + if ("lower body") return "abdominal" return ""