From 24d7f44e9a6ed30f4892a10e0a4434cc754e755d Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Thu, 12 Oct 2023 22:46:53 +0200 Subject: [PATCH] Update dropship_computer.dm --- code/modules/shuttle/computers/dropship_computer.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index 15b6a6ca6e87..2173326382ef 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -444,6 +444,9 @@ if("set-automate") var/almayer_lz = params["hangar_id"] var/ground_lz = params["ground_id"] + if(ground_lz == DROPSHIP_FLYBY_ID) + to_chat(user, SPAN_WARNING("Unfortunately it is not possible to automate fly-bys.")) + return var/delay = Clamp(params["delay"] SECONDS, DROPSHIP_MIN_AUTO_DELAY, DROPSHIP_MAX_AUTO_DELAY) // TODO verify