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)