In response to Garthor
            Move()
for(var/obj/hakus/water/click/WC in view(0,src))
world<<"no? ;/"
del(src)
..()


I changed it to:


            Move()
..()
for(var/obj/hakus/water/click/WC in view(0,src))
world<<"no? ;/"
del(src)


And now it works :)) Thx for help heh
In response to Paffci0


Paffci0 wrote:
>           Move()
> for(var/obj/hakus/water/click/WC in view(0,src))
> world<<"no? ;/"
> del(src)
> ..()


I'm curious. When he is modifying Move() it overwrites the default actions of Move() right? and thats what ..() is for, to restore Move() to is defaults? If ..() were not added, Move would stop functioning as normal yea?
In response to Paffci0
Honestly I'd be going with

Move(newLoc,newDir)
if((locate(/obj/hakus/water/click/wc) in get_step(src,newDir))) return 0
..()


This is if I'm understanding what you're trying to do correctly o.O.
Page: 1 2