mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
Merge pull request #11160 from VOREStation/Arokha/accessfinder
Gives pathfinder an actual access level
This commit is contained in:
@@ -262,8 +262,8 @@
|
||||
desc = "Station Network"
|
||||
region = ACCESS_REGION_RESEARCH
|
||||
|
||||
// /var/const/free_access_id = 43
|
||||
// /var/const/free_access_id = 44
|
||||
// /var/const/free_access_id = 43 // taken in VR
|
||||
// /var/const/free_access_id = 44 // taken in VR
|
||||
|
||||
/var/const/access_surgery = 45
|
||||
/datum/access/surgery
|
||||
|
||||
@@ -5,6 +5,12 @@ var/const/access_explorer = 43
|
||||
desc = "Explorer"
|
||||
region = ACCESS_REGION_GENERAL
|
||||
|
||||
/var/const/access_pathfinder = 44
|
||||
/datum/access/pathfinder
|
||||
id = access_pathfinder
|
||||
desc = "Pathfinder"
|
||||
region = ACCESS_REGION_GENERAL
|
||||
|
||||
var/const/access_pilot = 67
|
||||
/datum/access/pilot
|
||||
id = access_pilot
|
||||
|
||||
@@ -43,8 +43,8 @@
|
||||
pto_type = PTO_EXPLORATION
|
||||
dept_time_required = 20
|
||||
|
||||
access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_explorer, access_gateway)
|
||||
minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_explorer, access_gateway)
|
||||
access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_explorer, access_gateway, access_pathfinder)
|
||||
minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_explorer, access_gateway, access_pathfinder)
|
||||
outfit_type = /decl/hierarchy/outfit/job/pathfinder
|
||||
job_description = "The Pathfinder's job is to lead and manage expeditions, and is the primary authority on all off-station expeditions."
|
||||
alt_titles = list("Expedition Lead" = /datum/alt_title/expedition_lead, "Exploration Manager" = /datum/alt_title/exploration_manager)
|
||||
|
||||
@@ -33274,8 +33274,8 @@
|
||||
},
|
||||
/obj/machinery/door/airlock/science{
|
||||
name = "Pathfinder";
|
||||
req_access = list(62,43,67);
|
||||
req_one_access = newlist()
|
||||
req_access = null;
|
||||
req_one_access = list(44)
|
||||
},
|
||||
/turf/simulated/floor/tiled/steel_grid,
|
||||
/area/tether/exploration/pathfinder_office)
|
||||
|
||||
Reference in New Issue
Block a user