Skip to content

Commit

Permalink
Fixes DNA Initialization
Browse files Browse the repository at this point in the history
Missed a line when pushing, here it is!
  • Loading branch information
GeneriedJenelle committed Jul 19, 2024
1 parent 3e11247 commit 7e4509b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,9 @@ default behaviour is:
if(!real_name)
real_name = name

dna_trace = sha1(real_name)
fingers_trace = md5(real_name)

//Some mobs may need to create their stats datum farther up
if (!stats)
stats = new /datum/stat_holder(src)
Expand Down Expand Up @@ -915,4 +918,4 @@ default behaviour is:
var/matrix/M = matrix()
M.Scale(desired_scale)
M.Translate(0, 16*(desired_scale-1))
src.transform = M
src.transform = M

0 comments on commit 7e4509b

Please sign in to comment.