!= "Yes" instead of == "No"

This commit is contained in:
iksyp
2018-04-01 00:55:49 -07:00
committed by GitHub
parent 303ccf364a
commit 514840b054
@@ -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