ID:139520
 
Code:
area
Entered(atom/movable/a)
if(ismob(a))
var/mob/M=a
world<<"[M]" // debug


Problem description:
Even though I'm not overwriting area/Entered() anywhere, and am calling the parent proc in every client/Move() and mob/Move(), I simply cannot get the area/Entered() to get called. Ever.

Any possible causes of this?
You only enter an area when you exit a different area.
In response to Kaiochao
Kaiochao wrote:
You only enter an area when you exit a different area.

More accurately, you only enter an area when you enter a turf and your current location is either null, an obj, a mob, a different area, or a turf in a different area.
In response to Garthor
Thanks for the response guys, did not know that. Cheers! :)