From 6146aa156d7aca95036b57c0524174aa2e08d8cb Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Mon, 12 Oct 2015 01:04:30 -0700 Subject: [PATCH 1/2] Adds a lesser magic mirror that only allows for human and lizard race changes --- code/game/objects/structures/mirror.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 9c3f73faf40..5e0ef22f73d 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -117,6 +117,10 @@ choosable_races += S.id ..() +/obj/structure/mirror/magic/lesser/New() + choosable_races = list("human","lizard") + ..() + /obj/structure/mirror/magic/badmin/New() for(var/speciestype in typesof(/datum/species) - /datum/species) var/datum/species/S = new speciestype() From b3693e15cac4d9e0fecbb9ed5f1f69450e9e2012 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Tue, 13 Oct 2015 19:24:32 -0700 Subject: [PATCH 2/2] Changed to use roundstart_species list --- code/game/objects/structures/mirror.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 5e0ef22f73d..002da122b27 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -118,7 +118,7 @@ ..() /obj/structure/mirror/magic/lesser/New() - choosable_races = list("human","lizard") + choosable_races = roundstart_species ..() /obj/structure/mirror/magic/badmin/New()