turf/Click()
for(var/mob/Mobb/A in view())
if(A.owner == usr)
walk_to(A,src)
else
..()
Release()
set name = "Release"
set category = "Techniques"
var/mob/Mobb/A = new/mob/Mobb
A.loc = usr.loc
src.amount -= 1
A.owner = usr
usr<< "You Released it!"
Problem description: The mob WILL NOT MOVE. I have even copied and pasted other work that I have done that is EXACTLY like this, and all of those work. But, for some reason, this wont. Any reason why?
(I have also used walk_towards in place of walk_to. It still doesn't work)