client/Center()
for(var/atom/a in get_step(src.mob,src.mob.dir)) //look for an atom they're facing, this loop fails for some reason and nothing past it happens
src<<"A" //test message. This doesn't get displayed.
a.Action(src.mob) //this also doesn't happen, but I thought that might be obvious due to the above test message not happening either.
atom/proc/Action(atom/a)
turf/tester
Action(atom/m)
m<<"It worked!"
Problem description:
Nothing after the for() loop in Center() happens, it just... cancels, or something.