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