From 373cfd83030bc1feeeae307503167f6bd0eef386 Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 31 Oct 2016 19:51:54 +0100 Subject: [PATCH] Fixes dental implant runtime (#21256) * Fixes dental implant runtime * oranges is right --- code/modules/mob/living/carbon/life.dm | 4 ++-- code/modules/surgery/dental_implant.dm | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index aa898296f9a..3048b16c10c 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -13,8 +13,8 @@ handle_blood() if(stat != DEAD) - for(var/X in internal_organs) - var/obj/item/organ/O = X + for(var/V in internal_organs) + var/obj/item/organ/O = V O.on_life() //Updates the number of stored chemicals for powers diff --git a/code/modules/surgery/dental_implant.dm b/code/modules/surgery/dental_implant.dm index 82824860cbb..71fabfb7e62 100644 --- a/code/modules/surgery/dental_implant.dm +++ b/code/modules/surgery/dental_implant.dm @@ -16,7 +16,6 @@ return 0 user.drop_item() - target.internal_organs += tool tool.loc = target var/datum/action/item_action/hands_free/activate_pill/P = new