From 8f27fc38a99fa118b16932fec4d7146bdc6da0ce Mon Sep 17 00:00:00 2001 From: Walter0o Date: Fri, 15 Aug 2014 06:19:55 +0200 Subject: [PATCH] comment adjustment according to feedback --- code/modules/mob/living/silicon/robot/drone/drone_items.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm index 82868f5d854..d01f395fff4 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -82,16 +82,15 @@ if(wrapped) //Already have an item. - // temporary put the item into user so attackby checks pass + //Temporary put wrapped into user so target's attackby() checks pass. wrapped.loc = user - //Pass the attack on to the target. this might delete/relocate wrapped + //Pass the attack on to the target. This might delete/relocate wrapped. target.attackby(wrapped,user) - // if the item did not get put into target or deleted, put it back into src + //If wrapped did neither get deleted nor put into target, put it back into the gripper. if(wrapped && user && (wrapped.loc == user)) wrapped.loc = src - else wrapped = null return