Removed a duplicate proc. Pimped out the Blueprints.

This commit is contained in:
SkyMarshal
2012-06-13 17:05:43 -07:00
parent 77c4ba2014
commit d4393c482d
19 changed files with 337 additions and 127 deletions
-7
View File
@@ -1024,13 +1024,6 @@ Turf and target are seperate in case you want to teleport some distance from a t
output += A
return output
/proc/get_turf_loc(var/atom/movable/M) //gets the location of the turf that the atom is on, or what the atom is in is on, etc
//in case they're in a closet or sleeper or something
var/atom/loc = M.loc
while(!istype(loc, /turf/))
loc = loc.loc
return loc
// returns the turf located at the map edge in the specified direction relative to A
// used for mass driver
/proc/get_edge_target_turf(var/atom/A, var/direction)