From 48d0d6bb39fe9c8713550e029d78235ff82cff8f Mon Sep 17 00:00:00 2001 From: Datraen Date: Mon, 28 Dec 2015 20:32:41 -0500 Subject: [PATCH] EAL given to Cyborgs, AI and pAI. --- code/modules/mob/living/silicon/ai/ai.dm | 1 + code/modules/mob/living/silicon/pai/pai.dm | 1 + code/modules/mob/living/silicon/robot/robot.dm | 1 + html/changelogs/Datraen.yml | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index 64d5c12048c..18cdeded529 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -149,6 +149,7 @@ var/list/ai_verbs_default = list( add_language("Skrellian", 0) add_language("Tradeband", 1) add_language("Gutter", 0) + add_language("Encoded Audio Language", 1) if(!safety)//Only used by AIize() to successfully spawn an AI. if (!B)//If there is no player/brain inside. diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index 7c588d0f786..579ec2e6d61 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -86,6 +86,7 @@ add_language("Sol Common", 1) add_language("Tradeband", 1) add_language("Gutter", 1) + add_language("Encoded Audio Language", 1) verbs += /mob/living/silicon/pai/proc/choose_chassis verbs += /mob/living/silicon/pai/proc/choose_verbs diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 293a55b2224..4260f1d365f 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -98,6 +98,7 @@ spark_system.attach(src) add_language("Robot Talk", 1) + add_language("Encoded Audio Language", 1) wires = new(src) diff --git a/html/changelogs/Datraen.yml b/html/changelogs/Datraen.yml index b342e21d3d8..6393f2d7aad 100644 --- a/html/changelogs/Datraen.yml +++ b/html/changelogs/Datraen.yml @@ -33,4 +33,4 @@ delete-after: True # Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. # Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. changes: - - tweak: "Respawn time moved down from 30 minutes to 15 minutes." + - bugfix: "Other synthetics given EAL."