From 66d441898e698801981f3f3535394d4fc44cebc4 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Tue, 7 Feb 2017 18:15:10 -0200 Subject: [PATCH] Fix wizards having the wrong faction (#1734) Fix the wrong faction in the datum. --- code/game/antagonist/outsider/wizard.dm | 2 +- code/modules/spells/artifacts.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/antagonist/outsider/wizard.dm b/code/game/antagonist/outsider/wizard.dm index aa40ec091eb..cac25fa990e 100644 --- a/code/game/antagonist/outsider/wizard.dm +++ b/code/game/antagonist/outsider/wizard.dm @@ -15,7 +15,7 @@ var/datum/antagonist/wizard/wizards initial_spawn_req = 1 initial_spawn_target = 1 - faction = "wizard" + faction = "Space Wizard" /datum/antagonist/wizard/New() ..() diff --git a/code/modules/spells/artifacts.dm b/code/modules/spells/artifacts.dm index 13f02346f79..6ef000cbe03 100644 --- a/code/modules/spells/artifacts.dm +++ b/code/modules/spells/artifacts.dm @@ -66,13 +66,13 @@ ..() icon_state = "runesword1" item_state = "runesword1" - user << "The [src] surges to life!." + user << "\The [src] surges to life!." /obj/item/weapon/melee/energy/wizard/deactivate(mob/living/user) ..() icon_state = "runesword0" item_state = "runesword0" - user << "The [src] slowly dies out." + user << "\The [src] slowly dies out." /obj/item/weapon/melee/energy/wizard/attack(mob/living/M, mob/living/user, var/target_zone) if(user.faction == "Space Wizard")