The great verb retabbening.

Assigned categories to assorted verbs that lacked them. Commands tab is now more or less gone. Instead, things are in "IC" for things like say, whisper, me, that are inherent to you, "OOC" for things like OOC chat, and "Objects" for verbs originating from the world around you. I suppose for those non-admins in the audience, you now also get an "Admin" tab, because I stuffed adminhelp and adminwho in there.

This change was only to verbs defined as verbs in the code, procs that are assigned to things as verbs are far more numerous and harder to isolate, but also mostly admin-related.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1234 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2011-03-22 21:29:42 +00:00
parent 860d4976f7
commit 1aca6254d4
39 changed files with 127 additions and 22 deletions
+2
View File
@@ -602,6 +602,8 @@
return 1
/obj/machinery/clonepod/verb/eject()
set name = "Eject Cloner"
set category = "Object"
set src in oview(1)
if (usr.stat != 0)
+10 -6
View File
@@ -1041,13 +1041,17 @@ proc/move_mining_shuttle()
src.contents += O;
return
/obj/item/weapon/satchel/verb/all_on_tile()
mode = 1
return
/obj/item/weapon/satchel/verb/toggle_mode()
set name = "Switch Satchel Method"
set category = "Object"
mode = !mode
switch (mode)
if(1)
usr << "The satchel now picks up all ore in a tile at once."
if(0)
usr << "The satchel now picks up ore one at a time."
/obj/item/weapon/satchel/verb/one_at_a_time()
mode = 0
return
/**********************Ore box**************************/