Ports /vg/ get_turf

Gotta go faster.
Possibly undocumented behaviour of get_step?
This commit is contained in:
comma
2016-07-04 00:11:50 +03:00
committed by Yoshax
parent 3896f8b3c1
commit 2fc033ee0e
3 changed files with 3 additions and 7 deletions

View File

@@ -1037,12 +1037,6 @@ proc/get_mob_with_client_list()
else if (zone == "r_foot") return "right foot"
else return zone
//gets the turf the atom is located in (or itself, if it is a turf).
//returns null if the atom is not in a turf.
/proc/get_turf(atom/movable/A)
if(isturf(A)) return A
if(A && A.locs.len) return A.locs[1]
/proc/get(atom/loc, type)
while(loc)
if(istype(loc, type))

View File

@@ -1,6 +1,8 @@
#define Clamp(x, y, z) (x <= y ? y : (x >= z ? z : x))
#define CLAMP01(x) (Clamp(x, 0, 1))
#define get_turf(A) get_step(A,0)
#define isAI(A) istype(A, /mob/living/silicon/ai)
#define isalien(A) istype(A, /mob/living/carbon/alien)

View File

@@ -65,7 +65,7 @@
else if(!anchored)
playsound(src.loc, 'sound/items/Ratchet.ogg', 100, 1)
user << "<span class='notice'>Now securing the girder...</span>"
if(get_turf(user, 40))
if(do_after(user, 40,src))
user << "<span class='notice'>You secured the girder!</span>"
reset_girder()