From b5e70ba0080f35c104570b0fcb67a4aaf98408a1 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 8 Aug 2022 00:08:13 +0100 Subject: [PATCH] we do a little fix --- code/modules/client/preferences.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 8a9f122f43..409916da30 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -3357,6 +3357,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(spawn_chair) // Makes spawning on the arrivals shuttle more consistent looking wheels.setDir(spawn_chair.dir) wheels.buckle_mob(character) + var/datum/component/dullahan/dullahan = character.GetComponent(/datum/component/dullahan) + // if you ready up, quirks are assigned first, very stupid + if(dullahan && dullahan.dullahan_head) + dullahan.dullahan_head.name = "[character.name]'s head" + dullahan.dullahan_head.desc = "the decapitated head of [character.name]" /datum/preferences/proc/get_default_name(name_id) switch(name_id)