Merge pull request #46 from alex-gh/weightless_fix

Non station areas no longer suffer from gravity loss
This commit is contained in:
ZomgPonies
2013-11-13 17:29:58 -08:00
@@ -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)