From a65948afaf85c4d65dde84a138d585ce3642050b Mon Sep 17 00:00:00 2001 From: VampyrBytes Date: Mon, 6 Feb 2017 10:16:10 +0000 Subject: [PATCH] Fixes magnetic gripper drop item verb (#6338) Fixes #6317 The name on this verb was the same as the name on `\client\verb\drop_item()` and that was the verb that was actually getting called, which does nothing if you're a robot --- code/modules/mob/living/silicon/robot/drone/drone_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 7a7cfa45efa..3df660dc117 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -51,7 +51,7 @@ /obj/item/weapon/gripper/verb/drop_item() - set name = "Drop Item" + set name = "Drop Gripped Item" set desc = "Release an item from your magnetic gripper." set category = "Drone"