Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Adds Camera App to Default Downloads #780

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/_globalvars/lists/maintenance_loot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ GLOBAL_LIST_INIT(uncommon_loot, list(//uncommon: useful items

list(//computer disks
/obj/item/computer_disk/maintenance/scanner = 1,
/obj/item/computer_disk/maintenance/camera = 1,
///obj/item/computer_disk/maintenance/camera = 1, //SKYRAT EDIT REMOVAL - Available To Crew Now
/obj/item/computer_disk/maintenance/modsuit_control = 1,
/obj/item/computer_disk/maintenance/theme = 3,
) = 4,
) = 3, //SKYRAT EDIT CHANGE - Original : 4

list(//modsuits
/obj/effect/spawner/random/mod/maint = 3,
Expand Down
1 change: 1 addition & 0 deletions code/modules/modular_computers/computers/item/pda.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
/datum/computer_file/program/notepad,
// SKYRAT EDIT ADDITION START
/datum/computer_file/program/crew_manifest, // Adds crew manifest to all base tablets
/datum/computer_file/program/maintenance/camera // Adds camera to all base tablets
// SKRAT EDIT ADDITION END
)
///List of items that can be stored in a PDA
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Makes camera app readily available to crew
/datum/computer_file/program/maintenance/camera
available_on_ntnet = TRUE
unique_copy = FALSE
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6357,6 +6357,7 @@
#include "modular_skyrat\master_files\code\modules\mod\modules\modules_antag.dm"
#include "modular_skyrat\master_files\code\modules\mod\modules\modules_supply.dm"
#include "modular_skyrat\master_files\code\modules\modular_computers\computers\item\laptop_presets.dm"
#include "modular_skyrat\master_files\code\modules\modular_computers\file_system\programs\maintenance\camera.dm"
#include "modular_skyrat\master_files\code\modules\pai\card.dm"
#include "modular_skyrat\master_files\code\modules\paperwork\employment_contract.dm"
#include "modular_skyrat\master_files\code\modules\paperwork\stamps.dm"
Expand Down
Loading