diff --git a/code/datums/ai/ai_controller.dm b/code/datums/ai/ai_controller.dm index 984b14731a1..68d0998b145 100644 --- a/code/datums/ai/ai_controller.dm +++ b/code/datums/ai/ai_controller.dm @@ -233,11 +233,7 @@ RESTRICT_TYPE(/datum/ai_controller) SSai_controllers.ai_controllers_by_zlevel[old_turf.z] -= src if(new_turf) SSai_controllers.ai_controllers_by_zlevel[new_turf.z] += src - var/new_level_clients = length(SSmobs.clients_by_zlevel[new_turf.z]) - if(new_level_clients) - set_ai_status(AI_STATUS_IDLE) - else - set_ai_status(AI_STATUS_OFF) + reset_ai_status() /// Abstract proc for initializing the pawn to the new controller /datum/ai_controller/proc/try_possess_pawn(atom/new_pawn)