mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Co-authored-by: silicons <2003111+silicons@users.noreply.github.com> Co-authored-by: silicons <no@you.cat>
14 lines
632 B
Plaintext
14 lines
632 B
Plaintext
/mob/living/can_pathfinding_enter(atom/movable/actor, dir, datum/pathfinding/search)
|
|
// mobs are ignored by pathfinding for now
|
|
// in the future we'll need a way for mobs to not collide into
|
|
// each other during cooperative AI actions
|
|
// or even for say, mulebots moving around humans when blocked.
|
|
return TRUE
|
|
|
|
/mob/living/can_pathfinding_exit(atom/movable/actor, dir, datum/pathfinding/search)
|
|
// mobs are ignored by pathfinding for now
|
|
// in the future we'll need a way for mobs to not collide into
|
|
// each other during cooperative AI actions
|
|
// or even for say, mulebots moving around humans when blocked.
|
|
return TRUE
|