From ca7567d81e0e262d6f666f227894a061eb7cd114 Mon Sep 17 00:00:00 2001 From: MarinaGryphon Date: Sat, 15 Jul 2017 13:55:12 -0500 Subject: [PATCH] Fixes #2888 (#3038) Since I'm sure people could come up with reasons any preset should have a file manager, I added it to all of them. Could undo it later, but it goes well with, say, the Relay program that lets you save (and view!) logs, as well as CERTAIN ROBOTICISTS (and mechatronic engineers) that like to put their forms on the computer. --- .../modular_computers/file_system/programs/app_presets.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/modular_computers/file_system/programs/app_presets.dm b/code/modules/modular_computers/file_system/programs/app_presets.dm index 56d6d21c815..f01d500c3d1 100644 --- a/code/modules/modular_computers/file_system/programs/app_presets.dm +++ b/code/modules/modular_computers/file_system/programs/app_presets.dm @@ -25,6 +25,7 @@ available = 1 /datum/modular_computer_app_presets/engineering/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/power_monitor(), new/datum/computer_file/program/alarm_monitor(), new/datum/computer_file/program/atmos_control(), @@ -42,6 +43,7 @@ available = 1 /datum/modular_computer_app_presets/medical/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/suit_sensors() ) @@ -54,6 +56,7 @@ available = 1 /datum/modular_computer_app_presets/research/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/ntnetmonitor(), new/datum/computer_file/program/aidiag(), @@ -68,6 +71,7 @@ available = 1 /datum/modular_computer_app_presets/command/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/card_mod(), new/datum/computer_file/program/comm() @@ -81,6 +85,7 @@ available = 1 /datum/modular_computer_app_presets/security/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/camera_monitor(), new/datum/computer_file/program/comm(), @@ -95,6 +100,7 @@ available = 1 /datum/modular_computer_app_presets/civilian/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/game/arcade(), new/datum/computer_file/program/game/sudoku() @@ -108,6 +114,7 @@ available = 0 /datum/modular_computer_app_presets/wall_generic/return_install_programs() var/list/_prg_list = list( + new/datum/computer_file/program/filemanager(), new/datum/computer_file/program/chatclient(), new/datum/computer_file/program/camera_monitor(), new/datum/computer_file/program/alarm_monitor()