Fixes borg grippers not being able to use drop hotkey (Q) to drop items (#10520)

This commit is contained in:
JohnWildkins
2020-11-12 13:44:21 -05:00
committed by GitHub
parent 5b78ad9762
commit dd22e70a45
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -63,7 +63,7 @@
to_chat(usr, SPAN_WARNING("You have nothing to drop in your hand."))
return
drop_item()
else if(isrobot(src))
else if(isrobot(usr))
var/mob/living/silicon/robot/R = usr
var/I = R.get_active_hand()
if(istype(I, /obj/item/gripper))
+6
View File
@@ -0,0 +1,6 @@
author: JohnWildkins
delete-after: True
changes:
- bugfix: "Drop hotkey (Q) should now properly work to drop things held by robotic grippers."