From 5e061916d4eb3559d9f6b93dd1aaa6869d2d221a Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 26 Mar 2023 06:53:23 -0400 Subject: [PATCH] Removes slime people and kidan from the syndicate M.A.G.I.C mirror (#20642) * Removes slime people and kidan from the syndicate M.A.G.I.C mirror * wizards can be vox / plasmamen again * I am smart --- code/game/objects/structures/mirror.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 8b16b416ea0..a11a1de1dc1 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -97,6 +97,7 @@ icon_state = "magic_mirror" var/options = list("Name", "Body", "Voice") var/organ_warn = FALSE + var/actually_magical = TRUE /obj/structure/mirror/magic/attack_hand(mob/user) if(!ishuman(user) || broken) @@ -124,7 +125,9 @@ if("Body") if(organ_warn) to_chat(user, "Using the mirror will destroy any non biochip implants in you!") - var/list/race_list = list("Human", "Tajaran", "Skrell", "Unathi", "Diona", "Vulpkanin", "Nian", "Slime People", "Grey", "Drask", "Kidan") + var/list/race_list = list("Human", "Tajaran", "Skrell", "Unathi", "Diona", "Vulpkanin", "Nian", "Grey", "Drask") + if(actually_magical) + race_list = list("Human", "Tajaran", "Skrell", "Unathi", "Diona", "Vulpkanin", "Nian", "Grey", "Drask", "Vox", "Plasmaman", "Kidan") var/datum/ui_module/appearance_changer/AC = ui_users[user] if(!AC) @@ -174,4 +177,5 @@ desc = "The M.A.G.I.C mirror will let you change your species in a flash! Be careful, any implants (not biochips) in you will be destroyed on use." options = list("Body") organ_warn = TRUE + actually_magical = FALSE