From 4c4e1a3be3849eec497cbc3252d6174b494e81c8 Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Wed, 22 Sep 2010 15:23:36 +0000 Subject: [PATCH] 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 --- code/game/verbs/ooc.dm | 2 +- code/modules/admin/verbs/adminsay.dm | 2 +- code/modules/admin/verbs/deadsay.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index e4206def3b0..c22466366e3 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -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 diff --git a/code/modules/admin/verbs/adminsay.dm b/code/modules/admin/verbs/adminsay.dm index 2f4c0fb7886..4dfebbb6adc 100644 --- a/code/modules/admin/verbs/adminsay.dm +++ b/code/modules/admin/verbs/adminsay.dm @@ -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? diff --git a/code/modules/admin/verbs/deadsay.dm b/code/modules/admin/verbs/deadsay.dm index bb316fdb582..26b02db09f5 100644 --- a/code/modules/admin/verbs/deadsay.dm +++ b/code/modules/admin/verbs/deadsay.dm @@ -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)