Restored ooc, asay, and dsay to their easier to use forms.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@141 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2010-09-22 15:23:36 +00:00
parent ecef57ac20
commit 4c4e1a3be3
3 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
src << "\blue You are no longer listening to messages on the OOC channel."
/mob/verb/ooc(msg as text)
set name = "OOC Message"
set name = "OOC" //Gave this shit a shorter name so you only have to time out "ooc" rather than "ooc message" to use it --NeoFite
if (!src.client.authenticated || IsGuestKey(src.key))
src << "You are not authorized to communicate over these channels."
return

View File

@@ -1,6 +1,6 @@
/client/proc/cmd_admin_say(msg as text)
set category = "Special Verbs"
set name = "Admin Say"
set name = "Asay" //Gave this shit a shorter name so you only have to time out "asay" rather than "admin say" to use it --NeoFite
set hidden = 1
// All admins should be authenticated, but... what if?

View File

@@ -1,6 +1,6 @@
/client/proc/dsay(msg as text)
set category = "Special Verbs"
set name = "Dead Say"
set name = "Dsay" //Gave this shit a shorter name so you only have to time out "dsay" rather than "dead say" to use it --NeoFite
set hidden = 1
// All admins should be authenticated, but... what if?
if(!src.authenticated || !src.holder)