From 40b86c142d67f3ddeba1b48669e9a20803dd2159 Mon Sep 17 00:00:00 2001 From: Ryan784 Date: Fri, 15 Jan 2016 02:35:36 -0500 Subject: [PATCH] Updated verbs Send message should work, also updated all the procs to their baystation equivalent instead of simply using our old code (shoulda done this in the first place) --- code/_onclick/hud/screen_objects.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 5a71ff51d4b..c638c03a57c 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -503,12 +503,12 @@ if("Crew Monitoring") if(isAI(usr)) var/mob/living/silicon/ai/AI = usr - AI.nano_crew_monitor() + AI.subsystem_crew_monitor() if("Show Crew Manifest") if(isAI(usr)) var/mob/living/silicon/ai/AI = usr - AI.ai_roster() + AI.show_station_manifest() if("Show Alerts") if(isAI(usr)) @@ -528,7 +528,7 @@ if("State Laws") if(isAI(usr)) var/mob/living/silicon/ai/AI = usr - AI.show_laws_verb() + AI.subsystem_law_manager() if("PDA - Send Message") if(isAI(usr))