mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-10 17:33:53 +00:00
Fixed a compile error (compile before you commit damnit Superxpdude!).
Tweaked singularity beacon's layer, so it's even more obvious. Tweaked singularity beacon's price. For 8, it was literally useless. I don't know why people complain you can release singulo with it, because the code only affects the singulo's move() proc, changing move_direction from pick(cardinals) to get_dir(src,target). That's literally the only thing it affects, and I don't see how it can release singulo. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1717 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -259,9 +259,9 @@ var/global/list/uneatable = list(
|
||||
move(var/movement_dir = 0)
|
||||
if(!move_self)
|
||||
return 0
|
||||
if(!(movement_dir in cardinal))
|
||||
if(!target && !(movement_dir in cardinal))
|
||||
movement_dir = pick(NORTH, SOUTH, EAST, WEST)
|
||||
if(target)
|
||||
else if(target)
|
||||
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
|
||||
spawn(0)
|
||||
|
||||
Reference in New Issue
Block a user