From e7dc7f9f0e680b598410affea757e1b1ac73566d Mon Sep 17 00:00:00 2001 From: "ericgfwong@hotmail.com" Date: Fri, 21 Dec 2012 20:44:34 +0000 Subject: [PATCH] . now works for department radios, in addition to : and # git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5370 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/say.dm | 90 +++++++++++++++++----------------- html/changelog.html | 7 +++ 2 files changed, 52 insertions(+), 45 deletions(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 4dbd95b2b1e..b1dff1b4f9f 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -1,54 +1,54 @@ var/list/department_radio_keys = list( - ":r" = "right hand", "#r" = "right hand", - ":l" = "left hand", "#l" = "left hand", - ":i" = "intercom", "#i" = "intercom", - ":h" = "department", "#h" = "department", - ":c" = "Command", "#c" = "Command", - ":n" = "Science", "#n" = "Science", - ":m" = "Medical", "#m" = "Medical", - ":e" = "Engineering", "#e" = "Engineering", - ":s" = "Security", "#s" = "Security", - ":w" = "whisper", "#w" = "whisper", - ":b" = "binary", "#b" = "binary", - ":a" = "alientalk", "#a" = "alientalk", - ":t" = "Syndicate", "#t" = "Syndicate", - ":u" = "Supply", "#u" = "Supply", - ":g" = "changeling", "#g" = "changeling", + ":r" = "right hand", "#r" = "right hand", ".r" = "right hand", + ":l" = "left hand", "#l" = "left hand", ".l" = "left hand", + ":i" = "intercom", "#i" = "intercom", ".i" = "intercom", + ":h" = "department", "#h" = "department", ".h" = "department", + ":c" = "Command", "#c" = "Command", ".c" = "Command", + ":n" = "Science", "#n" = "Science", ".n" = "Science", + ":m" = "Medical", "#m" = "Medical", ".m" = "Medical", + ":e" = "Engineering", "#e" = "Engineering", ".e" = "Engineering", + ":s" = "Security", "#s" = "Security", ".s" = "Security", + ":w" = "whisper", "#w" = "whisper", ".w" = "whisper", + ":b" = "binary", "#b" = "binary", ".b" = "binary", + ":a" = "alientalk", "#a" = "alientalk", ".a" = "alientalk", + ":t" = "Syndicate", "#t" = "Syndicate", ".t" = "Syndicate", + ":u" = "Supply", "#u" = "Supply", ".u" = "Supply", + ":g" = "changeling", "#g" = "changeling", ".g" = "changeling", - ":R" = "right hand", "#R" = "right hand", - ":L" = "left hand", "#L" = "left hand", - ":I" = "intercom", "#I" = "intercom", - ":H" = "department", "#H" = "department", - ":C" = "Command", "#C" = "Command", - ":N" = "Science", "#N" = "Science", - ":M" = "Medical", "#M" = "Medical", - ":E" = "Engineering", "#E" = "Engineering", - ":S" = "Security", "#S" = "Security", - ":W" = "whisper", "#W" = "whisper", - ":B" = "binary", "#B" = "binary", - ":A" = "alientalk", "#A" = "alientalk", - ":T" = "Syndicate", "#T" = "Syndicate", - ":U" = "Supply", "#U" = "Supply", - ":G" = "changeling", "#G" = "changeling", + ":R" = "right hand", "#R" = "right hand", ".R" = "right hand", + ":L" = "left hand", "#L" = "left hand", ".L" = "left hand", + ":I" = "intercom", "#I" = "intercom", ".I" = "intercom", + ":H" = "department", "#H" = "department", ".H" = "department", + ":C" = "Command", "#C" = "Command", ".C" = "Command", + ":N" = "Science", "#N" = "Science", ".N" = "Science", + ":M" = "Medical", "#M" = "Medical", ".M" = "Medical", + ":E" = "Engineering", "#E" = "Engineering", ".E" = "Engineering", + ":S" = "Security", "#S" = "Security", ".S" = "Security", + ":W" = "whisper", "#W" = "whisper", ".W" = "whisper", + ":B" = "binary", "#B" = "binary", ".B" = "binary", + ":A" = "alientalk", "#A" = "alientalk", ".A" = "alientalk", + ":T" = "Syndicate", "#T" = "Syndicate", ".T" = "Syndicate", + ":U" = "Supply", "#U" = "Supply", ".U" = "Supply", + ":G" = "changeling", "#G" = "changeling", ".G" = "changeling", //kinda localization -- rastaf0 //same keys as above, but on russian keyboard layout. This file uses cp1251 as encoding. - ":ê" = "right hand", "#ê" = "right hand", - ":ä" = "left hand", "#ä" = "left hand", - ":ø" = "intercom", "#ø" = "intercom", - ":ð" = "department", "#ð" = "department", - ":ñ" = "Command", "#ñ" = "Command", - ":ò" = "Science", "#ò" = "Science", - ":ü" = "Medical", "#ü" = "Medical", - ":ó" = "Engineering", "#ó" = "Engineering", - ":û" = "Security", "#û" = "Security", - ":ö" = "whisper", "#ö" = "whisper", - ":è" = "binary", "#è" = "binary", - ":ô" = "alientalk", "#ô" = "alientalk", - ":å" = "Syndicate", "#å" = "Syndicate", - ":é" = "Supply", "#é" = "Supply", - ":ï" = "changeling", "#ï" = "changeling" + ":ê" = "right hand", "#ê" = "right hand", ".ê" = "right hand", + ":ä" = "left hand", "#ä" = "left hand", ".ä" = "left hand", + ":ø" = "intercom", "#ø" = "intercom", ".ø" = "intercom", + ":ð" = "department", "#ð" = "department", ".ð" = "department", + ":ñ" = "Command", "#ñ" = "Command", ".ñ" = "Command", + ":ò" = "Science", "#ò" = "Science", ".ò" = "Science", + ":ü" = "Medical", "#ü" = "Medical", ".ü" = "Medical", + ":ó" = "Engineering", "#ó" = "Engineering", ".ó" = "Engineering", + ":û" = "Security", "#û" = "Security", ".û" = "Security", + ":ö" = "whisper", "#ö" = "whisper", ".ö" = "whisper", + ":è" = "binary", "#è" = "binary", ".è" = "binary", + ":ô" = "alientalk", "#ô" = "alientalk", ".ô" = "alientalk", + ":å" = "Syndicate", "#å" = "Syndicate", ".å" = "Syndicate", + ":é" = "Supply", "#é" = "Supply", ".é" = "Supply", + ":ï" = "changeling", "#ï" = "changeling", ".ï" = "changeling" ) /mob/living/proc/binarycheck() diff --git a/html/changelog.html b/html/changelog.html index 095741ccc02..16845b87dbb 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -48,6 +48,13 @@ Stuff which is in development and not yet visible to players or just code relate should be listed in the changelog upon commit tho. Thanks. --> +
+

21 December 2012

+

Ikarrus updated:

+ +

19 December 2012

Nodrak updated: