Non station areas no longer suffer from gravity loss

This commit is contained in:
alex-gh
2013-11-13 18:52:11 +01:00
parent 7e6d629535
commit 7ca827ee58
@@ -11,6 +11,7 @@
/datum/event/weightless/start()
for(var/area/A in world)
if (A.z != 1) continue //Don't turn off gravity on non-station z-levels.
A.gravitychange(0,A)
/*
if(control)
@@ -18,6 +19,7 @@
*/
/datum/event/weightless/end()
for(var/area/A in world)
if (A.z != 1) continue
A.gravitychange(1,A)
if(announceWhen >= 0)