Skip to content

Commit

Permalink
Cancelling sequiel to humans
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander committed Mar 24, 2024
1 parent 8cd149f commit fd8b37f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/_helpers/global_lists.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var/global/list/landmarks_list = list() //list of all landmarks created
var/global/list/all_species[0]
var/global/list/datum/language/all_languages = list()
var/global/list/language_keys[0] // Table of say codes for all languages
var/global/list/playable_species = list(SPECIES_HUMAN) // A list of ALL playable species, whitelisted, latejoin or otherwise.
var/global/list/playable_species = list() // A list of ALL playable species, whitelisted, latejoin or otherwise.


GLOBAL_LIST_EMPTY(all_particles)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/preference_setup/general/02_body.dm
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
continue
species_to_pick += species

var/choice = tgui_input_list(user, "Select a species to play as", CHARACTER_PREFERENCE_INPUT_TITLE, species_to_pick)
var/choice = tgui_input_list(user, "Select a species to play as", CHARACTER_PREFERENCE_INPUT_TITLE, species_to_pick, pref.species)
if(!choice || !(choice in all_species))
return

Expand Down

0 comments on commit fd8b37f

Please sign in to comment.