more fixes

This commit is contained in:
BlackMajor
2023-01-28 22:11:25 +13:00
parent be32183b75
commit 6e218f4b6f
12 changed files with 2710 additions and 28 deletions

View File

@@ -3,3 +3,14 @@
return FALSE
return ..()
/*
/datum/ai_holder/can_see_target(atom/movable/the_target, view_range = vision_range)
log_world("TARGET: [the_target] and TARGET.LOC: [the_target.loc]")
if(the_target && !isturf(the_target.loc)) //CHOMPEdit, AI shouldn't be targetting people inside objects of any kind
if(ismecha(the_target.loc)) //Except mechs, of course
target = the_target.loc
else
return FALSE
return ..()
*/