Convert species, organ_data, and rlimb_data to TG (#19277)

* First test batch bulk change

* remove desync'd old file

* Small change
This commit is contained in:
Aura Dusklight
2026-03-21 10:06:36 +02:00
committed by GitHub
parent c29f169011
commit c6f10bfeb3
32 changed files with 337 additions and 187 deletions
@@ -1,7 +1,8 @@
//Minimum limit is 18
/datum/category_item/player_setup_item/get_min_age()
var/min_age = 18
var/datum/species/S = GLOB.all_species[pref.species ? pref.species : "Human"]
var/pref_species = pref.read_preference(/datum/preference/choiced/species) || "Human"
var/datum/species/S = GLOB.all_species[pref_species]
if(!is_FBP() && S.min_age > 18)
min_age = S.min_age
return min_age