mob
Bump(A)
if(istype(A,/obj/balls/))
src.loc=A:loc
src.overlays+=A//so you see that player is dragging the ball with him
src.balldrag=new/obj/balls/ball1(src)
del(A)
return
else
..()
Move()
if(src.cantmove==1)
return
else
..()
How else can I do this? This seems rather impractical as it is difficult to remove the football icon from the mobs feet after the ball has been kicked.
Edit
Your problem with removing the football icon is that you are adding the same overlay multiple times.