From 222274d10862b4d3cd7304b4ad7e2a7f16c81fc2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 23 Sep 2017 05:53:56 -0500 Subject: [PATCH] [MIRROR] Using a soulstone on somebody now transfers your languages to the shade (#2911) * Merge pull request #30939 from MoreRobustThanYou/patch-8 Using a soulstone on somebody now transfers your languages to the shade * Using a soulstone on somebody now transfers your languages to the shade --- code/game/gamemodes/wizard/soulstone.dm | 1 + code/game/objects/items/holy_weapons.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/game/gamemodes/wizard/soulstone.dm b/code/game/gamemodes/wizard/soulstone.dm index 130839a373..ae7143d5a2 100644 --- a/code/game/gamemodes/wizard/soulstone.dm +++ b/code/game/gamemodes/wizard/soulstone.dm @@ -237,6 +237,7 @@ S.name = "Shade of [T.real_name]" S.real_name = "Shade of [T.real_name]" S.key = T.key + S.language_holder = U.language_holder.copy(S) if(U) S.faction |= "\ref[U]" //Add the master as a faction, allowing inter-mob cooperation if(U && iscultist(U)) diff --git a/code/game/objects/items/holy_weapons.dm b/code/game/objects/items/holy_weapons.dm index 3e8ac576ff..ba7c8e68dc 100644 --- a/code/game/objects/items/holy_weapons.dm +++ b/code/game/objects/items/holy_weapons.dm @@ -244,6 +244,7 @@ S.name = name S.ckey = theghost.ckey S.status_flags |= GODMODE + S.language_holder = user.language_holder.copy(S) var/input = stripped_input(S,"What are you named?", ,"", MAX_NAME_LEN) if(src && input)