-
-
Notifications
You must be signed in to change notification settings - Fork 682
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into newfood-burgers&p…
…izzas
- Loading branch information
Showing
56 changed files
with
834 additions
and
400 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/// A list of each bitflag and the name of its associated department. For use in the preferences menu. | ||
GLOBAL_LIST_INIT(dept_bitflag_to_name, list( | ||
"[DEPT_BITFLAG_COM]" = "Command", | ||
"[DEPT_BITFLAG_CIV]" = "Civilian", | ||
"[DEPT_BITFLAG_SRV]" = "Service", | ||
"[DEPT_BITFLAG_CAR]" = "Cargo", | ||
"[DEPT_BITFLAG_SCI]" = "Science", | ||
"[DEPT_BITFLAG_ENG]" = "Engineering", | ||
"[DEPT_BITFLAG_MED]" = "Medical", | ||
"[DEPT_BITFLAG_SEC]" = "Security", | ||
"[DEPT_BITFLAG_VIP]" = "Very Important People", | ||
"[DEPT_BITFLAG_SILICON]" = "Silicon", | ||
"[DEPT_BITFLAG_CAPTAIN]" = "Captain", | ||
"[DEPT_BITFLAG_ASSISTANT]" = "Assistant" | ||
)) | ||
|
||
/// A list of each department and its associated bitflag. | ||
GLOBAL_LIST_INIT(departments, list( | ||
"Command" = DEPT_BITFLAG_COM, | ||
"Very Important People" = DEPT_BITFLAG_VIP, | ||
"Security" = DEPT_BITFLAG_SEC, | ||
"Engineering" = DEPT_BITFLAG_ENG, | ||
"Medical" = DEPT_BITFLAG_MED, | ||
"Science" = DEPT_BITFLAG_SCI, | ||
"Supply" = DEPT_BITFLAG_CAR, | ||
"Cargo" = DEPT_BITFLAG_CAR, // code seems to switch between calling it Supply and Cargo. not going to fix that today, let's just split the difference. | ||
"Service" = DEPT_BITFLAG_SRV, | ||
"Civilian" = DEPT_BITFLAG_CIV, | ||
"Silicon" = DEPT_BITFLAG_SILICON | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.