From 6dc19d2cd649ce52a57536a11ed8f2ea5ece1a90 Mon Sep 17 00:00:00 2001 From: Deniz <66401072+Oyu07@users.noreply.github.com> Date: Tue, 27 Feb 2024 22:23:26 +0000 Subject: [PATCH] reverts isspace lmao (#24317) --- code/modules/mob/living/simple_animal/bot/floorbot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/bot/floorbot.dm b/code/modules/mob/living/simple_animal/bot/floorbot.dm index b60f10f61f8..bfbbcc18702 100644 --- a/code/modules/mob/living/simple_animal/bot/floorbot.dm +++ b/code/modules/mob/living/simple_animal/bot/floorbot.dm @@ -263,7 +263,7 @@ nagged = TRUE /mob/living/simple_animal/bot/floorbot/proc/is_hull_breach(turf/t) //Ignore space tiles not considered part of a structure, also ignores shuttle docking areas. - return !isspaceturf(get_area(t)) + return !istype(get_area(t), /area/space) //Floorbots, having several functions, need sort out special conditions here. /mob/living/simple_animal/bot/floorbot/process_scan(atom/scan_target)