Skip to content

Commit

Permalink
Fixes drones unable to use closet toggle open
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxxmedearly committed Jul 31, 2023
1 parent a308a84 commit d305e4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/structures/crates_lockers/closets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
if(!usr.canmove || usr.stat || usr.restrained())
return

if(ishuman(usr))
if(ishuman(usr) || (issilicon(usr) && Adjacent(usr)))
add_fingerprint(usr)
toggle(usr)
else
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/doxxmedearly-dronelocker_verbfix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: Doxxmedearly
delete-after: True
changes:
- bugfix: "Drones and borgs can now properly use the Toggle Open verb for closets and crates."

0 comments on commit d305e4c

Please sign in to comment.