From 335c4591adb3cb3db7878df8d7c5769a29396fd7 Mon Sep 17 00:00:00 2001 From: Incoming Date: Mon, 31 Mar 2014 13:30:19 -0400 Subject: [PATCH] Just uses Login() --- code/datums/mind.dm | 6 ------ code/modules/mob/living/login.dm | 4 ++++ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index f619125e932..02ff54ea341 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -1114,12 +1114,6 @@ datum/mind if(!mind.name) mind.name = real_name mind.current = src -//VENTCRAWLERS -/mob/living/mind_initialize() - ..() - if(ventcrawler) - add_memory("As [real_name] you can ventcrawl! Use alt+click on vents to quickly travel about the station.") - //HUMAN /mob/living/carbon/human/mind_initialize() ..() diff --git a/code/modules/mob/living/login.dm b/code/modules/mob/living/login.dm index 3cdd0a47f95..acc11c4bc05 100644 --- a/code/modules/mob/living/login.dm +++ b/code/modules/mob/living/login.dm @@ -18,6 +18,10 @@ if("nuclear emergency") if(mind in ticker.mode:syndicates) ticker.mode.update_all_synd_icons() + + if(ventcrawler) + src << "You can ventcrawl! Use alt+click on vents to quickly travel about the station." + return . //This stuff needs to be merged from cloning.dm but I'm not in the mood to be shouted at for breaking all the things :< ~Carn