* Added pickup verb to all items

* Added "Toggle Open" verb to all closets and crates
* Added "Toggle Lock" verb to all lockable closets

* Modified the cloning computer's UI slightly, makes more sense, added a little delay when scanning to improve user feedback when trying to clone several braindead bodies.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3712 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
daniel.cf.hultgren@gmail.com
2012-06-01 19:53:16 +00:00
parent 91377e038f
commit c90048c7aa
4 changed files with 101 additions and 60 deletions

View File

@@ -308,6 +308,16 @@
var/armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)
var/list/allowed = null //suit storage stuff.
/obj/item/verb/verb_pickup()
set src in oview(1)
set category = "Object"
set name = "Pickup"
if(!usr.canmove || usr.stat || usr.restrained())
return
src.attack_hand(usr)
/obj/item/device
icon = 'device.dmi'