ID:142839
 
Code:
        verb
CreateEm()
var/obj/newwall/N = new /obj/newwall
N.loc = locate(src.x,src.y+1,src.z)
do
world << N.bumped
sleep(4)
N.Move(N.x,N.y+1,N.z)
var/obj/newwall/NN = new/obj/newwall
NN.loc = locate(N.x,N.y-1,N.z)
sleep(4)
world << N.bumped
while(!N.bumped)


Problem description:
I'm having a problem where ALL of this code works except that the N.Move() part does not. I have tried it with step, walk, and many other things, the only way it works is with changing the Y variable, but I need to be using Bump(), and therefore that solution does not work.