diff --git a/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm b/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm index a0620ae3102..774610c053d 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm @@ -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 diff --git a/code/modules/modular_computers/file_system/programs/command/command_and_communications.dm b/code/modules/modular_computers/file_system/programs/command/command_and_communications.dm index 44579f849c0..af3a2d06d75 100644 --- a/code/modules/modular_computers/file_system/programs/command/command_and_communications.dm +++ b/code/modules/modular_computers/file_system/programs/command/command_and_communications.dm @@ -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" diff --git a/code/modules/modular_computers/file_system/programs/command/docks.dm b/code/modules/modular_computers/file_system/programs/command/docks.dm index 2aa032b6dc8..de12d254a5b 100644 --- a/code/modules/modular_computers/file_system/programs/command/docks.dm +++ b/code/modules/modular_computers/file_system/programs/command/docks.dm @@ -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) diff --git a/code/modules/modular_computers/file_system/programs/generic/records.dm b/code/modules/modular_computers/file_system/programs/generic/records.dm index 030edf9bf7d..81499e49981 100644 --- a/code/modules/modular_computers/file_system/programs/generic/records.dm +++ b/code/modules/modular_computers/file_system/programs/generic/records.dm @@ -182,7 +182,6 @@ . = ..() if(.) return - if(action == "login") if(can_run(usr, TRUE)) authenticated = TRUE diff --git a/code/modules/modular_computers/file_system/programs/security/guntracker.dm b/code/modules/modular_computers/file_system/programs/security/guntracker.dm index c4c1fccaeae..690aa0d64e0 100644 --- a/code/modules/modular_computers/file_system/programs/security/guntracker.dm +++ b/code/modules/modular_computers/file_system/programs/security/guntracker.dm @@ -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 diff --git a/code/modules/modular_computers/file_system/programs/security/implant_tracker.dm b/code/modules/modular_computers/file_system/programs/security/implant_tracker.dm index af49d87dcba..b7b08e4897d 100644 --- a/code/modules/modular_computers/file_system/programs/security/implant_tracker.dm +++ b/code/modules/modular_computers/file_system/programs/security/implant_tracker.dm @@ -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" diff --git a/html/changelogs/Ben10083 - AI Program Fixes.yml b/html/changelogs/Ben10083 - AI Program Fixes.yml new file mode 100644 index 00000000000..7d6171c3477 --- /dev/null +++ b/html/changelogs/Ben10083 - AI Program Fixes.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Ben10083 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes the unusable programs in the AI internal computer."