From 303ccf364a8a427cea462ef7d79adb2412d27e06 Mon Sep 17 00:00:00 2001 From: iksyp Date: Sat, 31 Mar 2018 03:44:46 -0700 Subject: [PATCH] laying resin over vents y/no confirmation is no longer reversed how do i explain this good --- 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 249428cc9e2..4b7fc058635 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 == "No") return FALSE return TRUE