From 420eb1a51b0868ef6b1c3eee9e7644bbcdf3cbc5 Mon Sep 17 00:00:00 2001 From: datlo Date: Mon, 11 Feb 2019 14:15:39 +0000 Subject: [PATCH] fix camera being stuck in your shuttle --- code/modules/shuttle/navigation_computer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/navigation_computer.dm b/code/modules/shuttle/navigation_computer.dm index 2b9f020bf75..feff384ed87 100644 --- a/code/modules/shuttle/navigation_computer.dm +++ b/code/modules/shuttle/navigation_computer.dm @@ -281,7 +281,7 @@ return ..() /mob/camera/aiEye/remote/shuttle_docker/setLoc(T) - if(istype(get_turf(T), /turf/space) || istype(get_area(T), /area/space)) + if(istype(get_turf(T), /turf/space) || istype(get_area(T), /area/space) || istype(get_area(T), /area/shuttle)) ..() var/obj/machinery/computer/camera_advanced/shuttle_docker/console = origin console.checkLandingSpot()