Fixes drop pods, fixes the Ninja TP consoles, fixes shuttles being unable to dock with the Horizon. (#14138)

This commit is contained in:
Matt Atlas
2022-05-29 20:26:06 +02:00
committed by GitHub
parent 73e16b02cf
commit f3bb184919
14 changed files with 689 additions and 642 deletions

View File

@@ -245,6 +245,26 @@
)
return _prg_list
/datum/modular_computer_app_presets/command/teleporter/ninja
name = "ninja_teleporter"
display_name = "Offsite - Teleporter"
description = "Contains the most common command programs and has a special teleporter control program loaded."
available = FALSE
/datum/modular_computer_app_presets/command/teleporter/ninja/return_install_programs(obj/item/modular_computer/comp)
var/list/_prg_list = list(
new /datum/computer_file/program/ntnetdownload(comp),
new /datum/computer_file/program/filemanager(comp),
new /datum/computer_file/program/newsbrowser(comp),
new /datum/computer_file/program/manifest(comp),
new /datum/computer_file/program/chat_client(comp),
new /datum/computer_file/program/civilian/cargoorder(comp),
new /datum/computer_file/program/comm(comp, FALSE),
new /datum/computer_file/program/records/employment(comp),
new /datum/computer_file/program/teleporter/ninja(comp)
)
return _prg_list
/datum/modular_computer_app_presets/command/hop
name = "command_hop"
display_name = "Command - HoP"

View File

@@ -162,3 +162,8 @@
linked_pad.visible_message(SPAN_NOTICE("Locked in."), range = 2)
SSvueui.check_uis_for_change(src)
/datum/computer_file/program/teleporter/ninja
required_access_run = list()
requires_ntnet = FALSE
requires_access_to_run = FALSE