Files
CHOMPStation2/code/modules/mob/mob_movement_ch.dm
Cadyn ecd8125771 Ai update (#8023)
Co-authored-by: silicons <2003111+silicons@users.noreply.github.com>
Co-authored-by: silicons <no@you.cat>
2024-03-31 13:38:23 +02:00

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