Timers will no longer go off when you set them to 0 unless they are on.

Unsimulated turfs can be climbed on once more.
Small blobs can use the blob to move around in space.
Jetpacks now have a toggle for the stabilization.
Jetpack fuel use has been reset to .01.
Moved most of the tanks over to a new folder and files so they are not all crammed into one.
The meteor event actually spawns more than one wave worth of meteors.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2488 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
mport2004@gmail.com
2011-11-05 05:25:22 +00:00
parent cf62068041
commit fbd0a5a9b5
18 changed files with 350 additions and 329 deletions

View File

@@ -60,7 +60,7 @@
process()
if(timing && (time >= 0))
time--
if(time <= 0)
if(timing && time <= 0)
timing = 0
toggle_scan()
time = 10

View File

@@ -51,7 +51,7 @@
process()
if(timing && (time >= 0))
time--
if(time <= 0)
if(timing && time <= 0)
timing = 0
timer_end()
time = 10