From c1da73ee36a5158db4cd96dbf9250ee47f770bf0 Mon Sep 17 00:00:00 2001 From: RandomGamer123 <31096837+RandomGamer123@users.noreply.github.com> Date: Tue, 22 Mar 2022 15:24:10 -0400 Subject: [PATCH] Make shuttle engines actually purchasable with the BYOS kit (#65596) * Make shuttle engines actually purchasable with the BYOS kit * Add note that shuttle engines can speed up transit time --- code/datums/shuttles.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index 96710bdfe83..b742b51eebe 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -167,12 +167,12 @@ /datum/map_template/shuttle/emergency/construction suffix = "construction" name = "Build your own shuttle kit" - description = "For the enterprising shuttle engineer! The chassis will dock upon purchase, but launch will have to be authorized as usual via shuttle call. Comes stocked with construction materials. Unlocks the ability to buy shuttle engine crates from cargo." - admin_notes = "No brig, no medical facilities, no shuttle console." + description = "For the enterprising shuttle engineer! The chassis will dock upon purchase, but launch will have to be authorized as usual via shuttle call. Comes stocked with construction materials. Unlocks the ability to buy shuttle engine crates from cargo, which allow you to speed up shuttle transit time." + admin_notes = "No brig, no medical facilities." credit_cost = CARGO_CRATE_VALUE * 5 who_can_purchase = list(ACCESS_CAPTAIN, ACCESS_CE) -/datum/map_template/shuttle/emergency/airless/post_load() +/datum/map_template/shuttle/emergency/construction/post_load() . = ..() //enable buying engines from cargo var/datum/supply_pack/P = SSshuttle.supply_packs[/datum/supply_pack/engineering/shuttle_engine]