diff --git a/code/modules/awaymissions/mission_code/wildwest.dm b/code/modules/awaymissions/mission_code/wildwest.dm
index a4f3b3e0e6a..9ebd1d88b6b 100644
--- a/code/modules/awaymissions/mission_code/wildwest.dm
+++ b/code/modules/awaymissions/mission_code/wildwest.dm
@@ -72,7 +72,7 @@
else
chargesa--
insistinga = 0
- var/wish = input("You want...","Wish") as null|anything in list("Power","Wealth","Immortality","To Kill","Peace")
+ var/wish = input("You want...","Wish") as null|anything in list("Power","Wealth","Immortality","Peace")
switch(wish)
if("Power")
to_chat(user, "Your wish is granted, but at a terrible cost...")
@@ -115,28 +115,6 @@
to_chat(user, "Aside from your new traits, you are mentally unchanged and retain your prior obligations.")
human.set_species(/datum/species/shadow)
user.regenerate_icons()
- if("To Kill")
- to_chat(user, "Your wish is granted, but at a terrible cost...")
- to_chat(user, "The Wish Granter punishes you for your wickedness, claiming your soul and warping your body to match the darkness in your heart.")
- ticker.mode.traitors += user.mind
- user.mind.special_role = SPECIAL_ROLE_TRAITOR
- var/datum/objective/hijack/hijack = new
- hijack.owner = user.mind
- user.mind.objectives += hijack
- to_chat(user, "Your inhibitions are swept away, the bonds of loyalty broken, you are free to murder as you please!")
- var/obj_count = 1
- for(var/datum/objective/OBJ in user.mind.objectives)
- to_chat(user, "Objective #[obj_count]: [OBJ.explanation_text]")
- obj_count++
- if(ishuman(user))
- var/mob/living/carbon/human/human = user
- if(!isshadowperson(human))
- to_chat(user, "Your flesh rapidly mutates!")
- to_chat(user, "You are now a Shadow Person, a mutant race of darkness-dwelling humanoids.")
- to_chat(user, "Your body reacts violently to light. However, it naturally heals in darkness.")
- to_chat(user, "Aside from your new traits, you are mentally unchanged and retain your prior obligations.")
- human.set_species(/datum/species/shadow)
- user.regenerate_icons()
if("Peace")
to_chat(user, "Whatever alien sentience that the Wish Granter possesses is satisfied with your wish. There is a distant wailing as the last of the Faithless begin to die, then silence.")
to_chat(user, "You feel as if you just narrowly avoided a terrible fate...")