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] fabrication has its own access and explorers aren't invited #3058

Merged
merged 1 commit into from
Jan 5, 2025
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
5 changes: 3 additions & 2 deletions maps/torch/job/command_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
access_emergency_armory, access_sec_guard, access_gun, access_expedition_shuttle, access_guppy, access_seneng, access_senmed, access_senadv,
access_explorer, access_pathfinder, access_pilot, access_commissary, access_petrov, access_petrov_helm, access_petrov_analysis, access_petrov_phoron,
access_petrov_toxins, access_petrov_chemistry, access_petrov_control, access_petrov_maint, access_rd, access_petrov_rd, access_torch_fax, access_torch_helm,
access_radio_comm, access_radio_eng, access_radio_med, access_radio_sec, access_radio_sup, access_radio_serv, access_radio_exp, access_radio_sci, access_research_storage
access_radio_comm, access_radio_eng, access_radio_med, access_radio_sec, access_radio_sup, access_radio_serv, access_radio_exp, access_radio_sci, access_research_storage,
access_fabrication
)

software_on_spawn = list(/datum/computer_file/program/comm,
Expand Down Expand Up @@ -120,7 +121,7 @@
access_petrov_analysis, access_petrov_phoron, access_petrov_toxins, access_petrov_chemistry, access_petrov_rd,
access_petrov_control, access_petrov_maint, access_pathfinder, access_explorer, access_eva, access_solgov_crew,
access_expedition_shuttle, access_expedition_shuttle_helm, access_maint_tunnels, access_torch_fax, access_radio_comm,
access_radio_sci, access_radio_exp, access_research_storage
access_radio_sci, access_radio_exp, access_research_storage, access_fabrication
)

software_on_spawn = list(/datum/computer_file/program/comm,
Expand Down
6 changes: 3 additions & 3 deletions maps/torch/job/research_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
access_mining_station, access_xenobiology, access_xenoarch, access_nanotrasen, access_solgov_crew,
access_expedition_shuttle, access_guppy, access_hangar, access_petrov, access_petrov_helm, access_guppy_helm,
access_petrov_analysis, access_petrov_phoron, access_petrov_toxins, access_petrov_chemistry, access_petrov_control,
access_petrov_maint, access_torch_fax, access_radio_sci, access_radio_exp, access_research_storage
access_petrov_maint, access_torch_fax, access_radio_sci, access_radio_exp, access_research_storage, access_fabrication
)

min_skill = list( SKILL_BUREAUCRACY = SKILL_BASIC,
Expand Down Expand Up @@ -85,7 +85,7 @@
access_mining_office, access_mining_station, access_xenobiology, access_guppy_helm,
access_xenoarch, access_nanotrasen, access_solgov_crew, access_expedition_shuttle, access_guppy, access_hangar,
access_petrov_analysis, access_petrov_phoron, access_petrov_toxins, access_petrov_chemistry, access_petrov_control, access_torch_fax,
access_petrov_maint, access_radio_sci, access_radio_exp, access_research_storage
access_petrov_maint, access_radio_sci, access_radio_exp, access_research_storage, access_fabrication
)
skill_points = 20
possible_goals = list(/datum/goal/achievement/notslimefodder)
Expand Down Expand Up @@ -128,6 +128,6 @@
access_mining_office, access_mining_station, access_xenobiology, access_guppy_helm,
access_xenoarch, access_nanotrasen, access_solgov_crew, access_expedition_shuttle, access_guppy, access_hangar,
access_petrov_analysis, access_petrov_phoron, access_petrov_toxins, access_petrov_chemistry, access_petrov_control,
access_radio_sci, access_radio_exp, access_research_storage
access_radio_sci, access_radio_exp, access_research_storage, access_fabrication
)
possible_goals = list(/datum/goal/achievement/notslimefodder)
6 changes: 6 additions & 0 deletions maps/torch/job/torch_access.dm
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,12 @@ var/global/const/access_torch_fax = "ACCESS_TORCH_FAX"
/datum/access/ai_upload
desc = "Cyborg Upload"

var/global/const/access_fabrication = "ACCESS_TORCH_FABRICATION"
/datum/access/access_fabrication
id = access_fabrication
desc = "Fabrication"
region = ACCESS_REGION_RESEARCH

/*************
* NRV Petrov *
*************/
Expand Down
1 change: 1 addition & 0 deletions maps/torch/torch_areas.dm
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@
/area/rnd/development
name = "\improper Fabricator Lab"
icon_state = "devlab"
req_access = list(access_fabrication)

/area/rnd/office
name = "\improper Research Paperwork Office"
Expand Down
Loading