obj
water
icon_state = "water"
layer = MOB_LAYER+2
density = 1
Bump(var/atom/A)
if(istype(A,/mob))
src.loc=A.loc
else if(istype(A,/obj/Misc))
if(A.movable)
src.loc=A.loc
if(A.waterable)
src.loc=A.loc
Problem description:
It says movable and waterable are undefined vars, but they are defined. How do I define it so that it will recognize those vars?