From 421c5688ab8107e8b627187c7ef1c94e2dc41c79 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Sat, 9 Jan 2016 02:46:49 -0800 Subject: [PATCH] Basic operation complete! --- code/game/gamemodes/wizard/raginmages.dm | 2 +- code/modules/mob/living/carbon/human/human.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/wizard/raginmages.dm b/code/game/gamemodes/wizard/raginmages.dm index 018465a5617..5d9f66f6ca4 100644 --- a/code/game/gamemodes/wizard/raginmages.dm +++ b/code/game/gamemodes/wizard/raginmages.dm @@ -4,7 +4,7 @@ required_players = 1 required_players_secret = 15 use_huds = 1 - var/max_mages = 10 + var/max_mages = 0 var/making_mage = 0 var/mages_made = 1 var/time_checked = 0 diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index f59d10f6413..ead31b1427f 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1909,6 +1909,7 @@ var/datum/mind/M = new/datum/mind(C.key) M.active = 0 M.original = new_character + M.current = new_character M.transfer_to(new_character) //won't transfer key since the mind is not active new_character.name = C.prefs.real_name