From 06cc69b81a21548eb7df382eb5d69fc7ae94ecab Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 25 Feb 2021 14:35:09 +0100 Subject: [PATCH] [MIRROR] fixes cult wraiths creating juggernauts instead (#3634) * Fix cult wraiths creating juggernauts instead (#57151) * fixes cult wraiths creating juggernauts instead Co-authored-by: Fikou --- code/modules/antagonists/wizard/equipment/soulstone.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/wizard/equipment/soulstone.dm b/code/modules/antagonists/wizard/equipment/soulstone.dm index 591896d9758..35ee20aa9ba 100644 --- a/code/modules/antagonists/wizard/equipment/soulstone.dm +++ b/code/modules/antagonists/wizard/equipment/soulstone.dm @@ -283,7 +283,7 @@ makeNewConstruct(/mob/living/simple_animal/hostile/construct/juggernaut/noncult, A, user, FALSE, T.loc) if("Wraith") if(iscultist(user)) - makeNewConstruct(/mob/living/simple_animal/hostile/construct/juggernaut, A, user, FALSE, T.loc) + makeNewConstruct(/mob/living/simple_animal/hostile/construct/wraith, A, user, FALSE, T.loc) else switch(theme) if(THEME_WIZARD)