From 8bb9bf3cd665a7a6443f29af18f3ff7dd059ab9b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 22 Mar 2022 22:04:50 +0100 Subject: [PATCH] [MIRROR] Make shuttle engines actually purchasable with the BYOS kit [MDB IGNORE] (#12226) * 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 * Make shuttle engines actually purchasable with the BYOS kit Co-authored-by: RandomGamer123 <31096837+RandomGamer123@users.noreply.github.com> --- 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 20c4b9a6e00..63e06053bd2 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -168,12 +168,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]