mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
AI Programs such as Command and Communications now work (#19860)
AI programs added in a previous PR were not given the correct flags. Teleport program removed as it was not needed + useless (only usable for nearby teleporter) --------- Co-authored-by: Ben10083 <Ben10083@users.noreply.github.com>
This commit is contained in:
@@ -13,11 +13,9 @@
|
||||
hard_drive.store_file(new /datum/computer_file/program/rcon_console(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/suit_sensors(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/power_monitor(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/teleporter(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/docks(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/implant_tracker(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/guntracker(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/account_db(src))
|
||||
hard_drive.store_file(new /datum/computer_file/program/comm(src))
|
||||
|
||||
/obj/item/modular_computer/silicon/robot
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@
|
||||
required_access_download = ACCESS_HEADS
|
||||
requires_ntnet = TRUE
|
||||
size = 12
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_LAPTOP
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_LAPTOP | PROGRAM_SILICON_AI
|
||||
network_destination = "station long-range communication array"
|
||||
color = LIGHT_COLOR_BLUE
|
||||
tgui_id = "CommandCommunications"
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
available_on_ntnet = TRUE
|
||||
required_access_run = ACCESS_HEADS
|
||||
required_access_download = ACCESS_HEADS
|
||||
usage_flags = PROGRAM_CONSOLE
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_SILICON_AI
|
||||
tgui_id = "Docks"
|
||||
|
||||
/datum/computer_file/program/docks/ui_data(mob/user)
|
||||
|
||||
@@ -182,7 +182,6 @@
|
||||
. = ..()
|
||||
if(.)
|
||||
return
|
||||
|
||||
if(action == "login")
|
||||
if(can_run(usr, TRUE))
|
||||
authenticated = TRUE
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
available_on_ntnet = TRUE
|
||||
required_access_download = ACCESS_HOS
|
||||
required_access_run = ACCESS_ARMORY
|
||||
usage_flags = PROGRAM_CONSOLE
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_SILICON_AI
|
||||
tgui_id = "GunTracker"
|
||||
var/list/wireless_firing_pins_data
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
requires_ntnet = TRUE
|
||||
available_on_ntnet = FALSE
|
||||
size = 6
|
||||
usage_flags = PROGRAM_CONSOLE
|
||||
usage_flags = PROGRAM_CONSOLE | PROGRAM_SILICON_AI
|
||||
color = LIGHT_COLOR_ORANGE
|
||||
tgui_id = "ImplantTracker"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user