From c86a8ce23ee312529554995d10d17c1a8c74c911 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 25 Jun 2018 15:11:49 -0400 Subject: [PATCH] Merge pull request #38709 from AutomaticFrenzy/patch/export-mechs Fix being unable to export mechs --- code/modules/shuttle/supply.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/supply.dm b/code/modules/shuttle/supply.dm index f42f7bfc9c..773b35544c 100644 --- a/code/modules/shuttle/supply.dm +++ b/code/modules/shuttle/supply.dm @@ -124,7 +124,7 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list( continue if(bounty_ship_item_and_contents(AM, dry_run = FALSE)) matched_bounty = TRUE - if(!AM.anchored) + if(!AM.anchored || istype(AM, /obj/mecha)) sold_atoms += export_item_and_contents(AM, contraband, emagged, dry_run = FALSE) if(sold_atoms)