Format
Uncrossed(atom/movable/O)
When
Called when an object has stopped overlapping this one through a call to Move(). Directly setting the object’s loc or step_x/y vars does not result in a call to Uncrossed() or any other movement side-effects. The same goes for deletion of an object.
Args
O: the object that moved and is no longer overlapping.
Default action
none
obj/pressure_plate
Uncrossed(O)
// if no other mobs are standing on it...
if(!(locate(/mob) in bounds()))
// do something
Release()