Finishes this PR

This commit is contained in:
Unknown
2019-04-21 21:32:39 -04:00
parent afc0d67f21
commit 6dc8552e8c
5 changed files with 20 additions and 1 deletions

View File

@@ -157,7 +157,7 @@ var/global/list/PDA_Manifest = list()
list("cat" = "Medical", "elems" = med), list("cat" = "Medical", "elems" = med),
list("cat" = "Science", "elems" = sci), list("cat" = "Science", "elems" = sci),
list("cat" = "Cargo", "elems" = car), list("cat" = "Cargo", "elems" = car),
// list("cat" = "Planetside", "elems" = pla), // VOREStation Edit - Don't show empty dpt in PDA list("cat" = "Exploration", "elems" = pla), // VOREStation Edit
list("cat" = "Civilian", "elems" = civ), list("cat" = "Civilian", "elems" = civ),
list("cat" = "Silicon", "elems" = bot), list("cat" = "Silicon", "elems" = bot),
list("cat" = "Miscellaneous", "elems" = misc) list("cat" = "Miscellaneous", "elems" = misc)

View File

@@ -79,3 +79,16 @@
access = list(access_maint_tunnels) access = list(access_maint_tunnels)
minimal_access = list(access_maint_tunnels) minimal_access = list(access_maint_tunnels)
outfit_type = /decl/hierarchy/outfit/job/assistant outfit_type = /decl/hierarchy/outfit/job/assistant
/datum/job/offduty_exploration
title = "Off-duty Explorer"
latejoin_only = TRUE
timeoff_factor = -1
total_positions = -1
faction = "Station"
department = "Exploration"
supervisors = "nobody! Enjoy your time off"
selection_color = "#999440"
access = list(access_maint_tunnels, access_external_airlocks)
minimal_access = list(access_maint_tunnels, access_external_airlocks)
outfit_type = /decl/hierarchy/outfit/job/assistant

View File

@@ -111,6 +111,7 @@ nanoui is used to open and update nano browser uis
add_script("nano_base_callbacks.js") // The NanoBaseCallbacks JS, this is used to set up (before and after update) callbacks which are common to all UIs add_script("nano_base_callbacks.js") // The NanoBaseCallbacks JS, this is used to set up (before and after update) callbacks which are common to all UIs
add_script("nano_base_helpers.js") // The NanoBaseHelpers JS, this is used to set up template helpers which are common to all UIs add_script("nano_base_helpers.js") // The NanoBaseHelpers JS, this is used to set up template helpers which are common to all UIs
add_stylesheet("shared.css") // this CSS sheet is common to all UIs add_stylesheet("shared.css") // this CSS sheet is common to all UIs
add_stylesheet("shared_vr.css") // VOREStation Add
add_stylesheet("icons.css") // this CSS sheet is common to all UIs add_stylesheet("icons.css") // this CSS sheet is common to all UIs
/** /**

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

5
nano/css/shared_vr.css Normal file
View File

@@ -0,0 +1,5 @@
th.Exploration{
background: #bab421;
font-weight: bold;
color: #ffffff;
}