From 813a5b248fc33648ad73bffc8a7ee73c1ebd4275 Mon Sep 17 00:00:00 2001 From: Fikou Date: Thu, 2 Apr 2020 02:41:12 +0200 Subject: [PATCH] posibrains now get admin set policy instead of code set welcome message (#50250) * changes the posibrain welcome message * ok * adds policy * oops * kfdapjhkaopkarpfakfpawkefahe --- code/modules/mob/living/brain/posibrain.dm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/brain/posibrain.dm b/code/modules/mob/living/brain/posibrain.dm index b6239db94ec..f2eaf5298a3 100644 --- a/code/modules/mob/living/brain/posibrain.dm +++ b/code/modules/mob/living/brain/posibrain.dm @@ -23,11 +23,6 @@ GLOBAL_VAR(posibrain_notify_cooldown) var/fail_message = "The positronic brain buzzes quietly, and the golden lights fade away. Perhaps you could try again?" ///Role assigned to the newly created mind var/new_role = "Positronic Brain" - ///Message sent to the player possessing the brain - var/welcome_message = "ALL PAST LIVES ARE FORGOTTEN.\n\ - You are a positronic brain, brought into existence aboard Space Station 13.\n\ - As a synthetic intelligence, you answer to all crewmembers and the AI.\n\ - Remember, the purpose of your existence is to serve the crew and the station. Above all else, do no harm." ///Visible message sent when a player possesses the brain var/new_mob_message = "The positronic brain chimes quietly." ///Examine message when the posibrain has no mob @@ -149,7 +144,9 @@ GLOBAL_VAR(posibrain_notify_cooldown) else brainmob.ckey = candidate.ckey name = "[initial(name)] ([brainmob.name])" - to_chat(brainmob, welcome_message) + var/policy = get_policy(ROLE_POSIBRAIN) + if(policy) + to_chat(brainmob, policy) brainmob.mind.assigned_role = new_role brainmob.set_stat(CONSCIOUS) brainmob.remove_from_dead_mob_list()