From 9b8ca10da28316119614941355e7de1653f7fabd Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 1 Apr 2018 12:11:38 -0400 Subject: [PATCH 1/2] Merge pull request #36856 from iskyp/resin+egg The y/n confirmation for laying eggs or resin over vents as a xeno is no longer reversed --- code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm index 249428cc9e..ef4bce7f11 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/alien_powers.dm @@ -63,7 +63,7 @@ Doesn't work on other aliens/AI.*/ var/obj/machinery/atmospherics/components/unary/atmos_thing = locate() in user.loc if(atmos_thing) var/rusure = alert(user, "Laying eggs and shaping resin here would block access to [atmos_thing]. Do you want to continue?", "Blocking Atmospheric Component", "Yes", "No") - if(rusure != "No") + if(rusure != "Yes") return FALSE return TRUE