ID:179007
 
i can not get the Enter proc to work. At first i tried to make it so that the mob needed to do something to change one of his var's to get in a certain terrain, but it didnt work so i deleted the part about the var needed to get in so all i had in the terrain was:

turf/special_terrain
Enter()
..()


and that didnt even let the mob in! is seems like the Enter proc doesnt let anything in by default. how do i make this proc let things in?
You need to return..() not just ..()

turf/special()
Enter(mob/M as mob)
if(ismob(M))//has to be a mob
if(M.varname)//if condition is met
return..()//walk through
else
return//no enter