From b5ebc4236cb8751f62e446cc54dfc1930d8d304a Mon Sep 17 00:00:00 2001 From: paulrpg Date: Wed, 27 Mar 2024 15:18:41 +0000 Subject: [PATCH] no longer able to send remote shuttle on flyby --- .../shuttle/computers/dropship_computer.dm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index adf139f9bd7d..4bcf1caa1676 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -387,14 +387,15 @@ .["destinations"] = list() // add flight - .["destinations"] += list( - list( - "id" = DROPSHIP_FLYBY_ID, - "name" = "Flyby", - "available" = TRUE, - "error" = FALSE + if(!is_remote) + .["destinations"] += list( + list( + "id" = DROPSHIP_FLYBY_ID, + "name" = "Flyby", + "available" = TRUE, + "error" = FALSE + ) ) - ) for(var/obj/docking_port/stationary/dock in compatible_landing_zones) var/dock_reserved = FALSE