Skip to content

Commit 840ad1a

Browse files
Change default DNA species to humen instead of human
1 parent f09a7d3 commit 840ad1a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

code/datums/dna.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
///Stores the hashed values of traits such as skin tones, hair style, and gender
66
var/unique_identity
77
var/datum/blood_type/human/human_blood_type
8-
var/datum/species/species = new /datum/species/human //The type of mutant race the player is if applicable (i.e. potato-man)
8+
var/datum/species/species = new /datum/species/human/northern //The type of mutant race the player is if applicable (i.e. potato-man)
99
var/list/features = MANDATORY_FEATURE_LIST
1010
var/real_name //Stores the real name of the person who originally got this dna datum. Used primarely for changelings,
1111
var/mob/living/holder

code/datums/world_factions/traders/trader.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// Creates a human with the given parameters and returns an appearance of it
2-
/proc/get_dynamic_human_appearance(outfit_path, species_path = /datum/species/human, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE, animated = TRUE)
2+
/proc/get_dynamic_human_appearance(outfit_path, species_path = /datum/species/human/northern, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE, animated = TRUE)
33
if(!species_path)
44
return FALSE
55
if(!ispath(species_path))
@@ -25,7 +25,7 @@
2525
qdel(dummy)
2626
return output
2727

28-
/proc/apply_dynamic_human_appearance(atom/target, outfit_path, species_path = /datum/species/human, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE)
28+
/proc/apply_dynamic_human_appearance(atom/target, outfit_path, species_path = /datum/species/human/northern, mob_spawn_path, r_hand, l_hand, bloody_slots = NONE)
2929
INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(set_dynamic_human_appearance), args)
3030

3131
///This proc gets an argument of a target and runs

0 commit comments

Comments
 (0)