From e65f1cab1be634574b1569e119e1d2bb677da64c Mon Sep 17 00:00:00 2001 From: Morrow Date: Thu, 12 Oct 2023 17:57:16 -0400 Subject: [PATCH] Initial --- code/controllers/subsystem/pathfinding.dm | 2 +- .../living/carbon/xenomorph/xeno_ai_interaction.dm | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/code/controllers/subsystem/pathfinding.dm b/code/controllers/subsystem/pathfinding.dm index 5a205c184a..e006fdeb05 100644 --- a/code/controllers/subsystem/pathfinding.dm +++ b/code/controllers/subsystem/pathfinding.dm @@ -191,7 +191,7 @@ SUBSYSTEM_DEF(xeno_pathfinding) SSxeno_pathfinding.current_processing -= src #ifdef TESTING - addtimer(CALLBACK(src, .proc/clear_colors, distances), 5 SECONDS) + addtimer(CALLBACK(src, PROC_REF(clear_colors), distances), 5 SECONDS) #endif start = null diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm index 10d81d941d..141220f056 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_ai_interaction.dm @@ -19,17 +19,6 @@ /obj/structure/machinery/door/xeno_ai_act(mob/living/carbon/xenomorph/X) X.do_click(src, "", list()) -/* -// WALLS -/turf/closed/wall/xeno_ai_obstacle(var/mob/living/carbon/xenomorph/X) - if(hull || claws_minimum > X.claw_type) - return ..() - return ((damage_cap - damage)/damage_cap)*WALL_PENALTY - -/turf/closed/wall/xeno_ai_act(var/mob/living/carbon/xenomorph/X) - X.do_click(src) -*/ - // OBJECTS /obj/structure/xeno_ai_obstacle(mob/living/carbon/xenomorph/X, direction) if(!density)