-I forgot to put back the spawn()s when I was testing whether they were needed or not.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5257 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2012-12-04 17:01:34 +00:00
parent fc90b08e1c
commit 7a24d16b03

View File

@@ -303,12 +303,15 @@ var/global/list/uneatable = list(
movement_dir = get_dir(src,target) //moves to a singulo beacon, if there is one
if(current_size >= 9)//The superlarge one does not care about things in its way
step(src, movement_dir)
step(src, movement_dir)
spawn(0)
step(src, movement_dir)
spawn(1)
step(src, movement_dir)
return 1
else if(check_turfs_in(movement_dir))
last_failed_movement = 0//Reset this because we moved
step(src, movement_dir)
spawn(0)
step(src, movement_dir)
return 1
else
last_failed_movement = movement_dir