Merge pull request #6225 from Citadel-Station-13/upstream-merge-36856

[MIRROR] The y/n confirmation for laying eggs or resin over vents as a xeno is no longer reversed
This commit is contained in:
LetterJay
2018-04-01 17:46:03 -05:00
committed by GitHub
@@ -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