turf
Entrances
Enterance
Enter(A)
if(ismob(A))
var/mob/M = A
if(M.client)
var/turf/t = src
if(t.loc == "3,33,1")
M.loc = locate(7,91,2)
if(loc == "9,34,1")
M.loc = locate(19,91,2)
if(loc == "14,34,1")
M.loc=locate(31,91,2)
if(loc == "19,34,1")
M.loc=locate(43,91,2)
if(loc == "26,34,1")
M.loc=locate(55,91,2)
Problem description:
I've created a turf that depending on the location of the turf, it'd send the person who enters it to a certain location. It's giving a bit of issues, my guess is the issue is coming at the var/turf/t = src bit, but I'm not entirely sure how to fix that either.
if(src.x == 3 && src.y == 33 && src.z === 1)