Skip to content

Commit

Permalink
no longer able to send remote shuttle on flyby
Browse files Browse the repository at this point in the history
  • Loading branch information
mullenpaul committed Mar 27, 2024
1 parent 956495d commit b5ebc42
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions code/modules/shuttle/computers/dropship_computer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b5ebc42

Please sign in to comment.