From 26105e7ee157032b9a351abfbc513f5c6a665546 Mon Sep 17 00:00:00 2001 From: tkdrg Date: Wed, 24 Dec 2014 13:20:52 -0300 Subject: [PATCH] Fixes christmas event runtime --- code/modules/events/holiday/xmas.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/holiday/xmas.dm b/code/modules/events/holiday/xmas.dm index 63c52779fa7..8bc253eaaad 100644 --- a/code/modules/events/holiday/xmas.dm +++ b/code/modules/events/holiday/xmas.dm @@ -99,8 +99,8 @@ var/response = alert(M, "Santa is coming to town! Do you want to be santa?", "Ho ho ho!", "Yes", "No") if(response == "Yes" && M && M.client && M.stat == DEAD && !santa) santa = new /mob/living/carbon/human(pick(blobstart)) - M.mind.transfer_to(santa) santa.key = M.key + qdel(M) santa.real_name = "Santa Claus" santa.name = "Santa Claus" @@ -148,4 +148,4 @@ telespell.clothes_req = 0 //santa robes aren't actually magical. santa.mind.spell_list += telespell //does the station have chimneys? WHO KNOWS! - M << "You are Santa! Your objective is to bring joy to the people on this station. You can conjure more presents using a spell, and there are several presents in your bag." + santa << "You are Santa! Your objective is to bring joy to the people on this station. You can conjure more presents using a spell, and there are several presents in your bag."