Object verb removal crew

This commit is contained in:
ZomgPonies
2014-07-15 08:47:43 -04:00
parent 9dff861f7d
commit 88098da3c7
7 changed files with 14 additions and 21 deletions
+3 -11
View File
@@ -1,6 +1,6 @@
/proc/possess(obj/O as obj in world)
set name = "Possess Obj"
set category = "Object"
set category = null
if(istype(O,/obj/machinery/singularity))
if(config.forbid_singulo_possession)
@@ -28,7 +28,7 @@
/proc/release(obj/O as obj in world)
set name = "Release Obj"
set category = "Object"
set category = null
//usr.loc = get_turf(usr)
if(usr.control_object && usr.name_archive) //if you have a name archived and if you are actually relassing an object
@@ -42,12 +42,4 @@
usr.loc = O.loc // Appear where the object you were controlling is -- TLE
usr.client.eye = usr
usr.control_object = null
feedback_add_details("admin_verb","RO") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/proc/givetestverbs(mob/M as mob in mob_list)
set desc = "Give this guy possess/release verbs"
set category = "Debug"
set name = "Give Possessing Verbs"
M.verbs += /proc/possess
M.verbs += /proc/release
feedback_add_details("admin_verb","GPV") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
feedback_add_details("admin_verb","RO") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!