From 6146aa156d7aca95036b57c0524174aa2e08d8cb Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Mon, 12 Oct 2015 01:04:30 -0700 Subject: [PATCH] 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()