From ae5897cd821c1fdf20da1e3dfb33242be4d34396 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 18 May 2017 01:12:55 -0500 Subject: [PATCH] Ash walkers speak Draconic by default, but still know common (#834) --- code/game/objects/structures/ghost_role_spawners.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/objects/structures/ghost_role_spawners.dm b/code/game/objects/structures/ghost_role_spawners.dm index bb55084dd9..5b5c88ebe0 100644 --- a/code/game/objects/structures/ghost_role_spawners.dm +++ b/code/game/objects/structures/ghost_role_spawners.dm @@ -48,6 +48,11 @@ /obj/effect/mob_spawn/human/ash_walker/special(mob/living/new_spawn) new_spawn.real_name = random_unique_lizard_name(gender) to_chat(new_spawn, "Drag the corpses of men and beasts to your nest. It will absorb them to create more of your kind. Glory to the Necropolis!") + + new_spawn.grant_language(/datum/language/draconic) + var/datum/language_holder/holder = new_spawn.get_language_holder() + holder.selected_default_language = /datum/language/draconic + if(ishuman(new_spawn)) var/mob/living/carbon/human/H = new_spawn H.underwear = "Nude"