mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
Tajaran update: the war to end all wars edition (#7638)
-changes how the tajara species handles citizenship in game: you now have to pick one of the three factions, this also enables consular officers for them -adds a new var to the species: default_citizenship, which citizenship should be the default one for that species, so you can have species that can't get biesel citizenship as their main one -adds a bunch of loadout options to the tajaran section -restricts tajara from being necropolis contractors
This commit is contained in:
@@ -75,15 +75,14 @@
|
||||
)
|
||||
|
||||
/datum/category_item/player_setup_item/general/background/sanitize_character()
|
||||
var/datum/species/S = all_species[pref.species]
|
||||
if(!pref.citizenship)
|
||||
pref.citizenship = CITIZENSHIP_BIESEL
|
||||
pref.citizenship = S.default_citizenship
|
||||
if(!pref.religion)
|
||||
pref.religion = RELIGION_NONE
|
||||
|
||||
var/datum/species/S = all_species[pref.species]
|
||||
|
||||
if(!(pref.citizenship in S.allowed_citizenships))
|
||||
pref.citizenship = CITIZENSHIP_BIESEL
|
||||
pref.citizenship = S.default_citizenship
|
||||
|
||||
if(!(pref.religion in S.allowed_religions))
|
||||
pref.religion = RELIGION_NONE
|
||||
|
||||
Reference in New Issue
Block a user