From 636f1cccaf1ef943ec8df8fcbc271e5d13385433 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Wed, 12 Aug 2026 23:48:58 +0000 Subject: [PATCH] Fix mineral haul shuttle loan. (#32387) * fix mineral haul shuttle loan * just realized this wouldn't work either --- code/modules/events/shuttle_loan/shuttle_loan_datum.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/events/shuttle_loan/shuttle_loan_datum.dm b/code/modules/events/shuttle_loan/shuttle_loan_datum.dm index 67d74fbe1cd..811e9b149e0 100644 --- a/code/modules/events/shuttle_loan/shuttle_loan_datum.dm +++ b/code/modules/events/shuttle_loan/shuttle_loan_datum.dm @@ -167,7 +167,7 @@ /datum/supply_packs/materials/glass50, /datum/supply_packs/materials/sandstone30, ) - for(var/datum/supply_packs/crate in crate_types) + for(var/crate in crate_types) var/datum/supply_packs/new_crate = new crate() new_crate.create_package(pick_n_take(empty_shuttle_turfs)) @@ -185,9 +185,7 @@ ) for(var/i in 1 to 5) var/mineral_type = pick(mineral_types) - var/obj/item/stack/sheet/mineral/new_mineral = new mineral_type() - new_mineral.amount = 10 - new new_mineral(pick_n_take(empty_shuttle_turfs)) + new mineral_type(pick_n_take(empty_shuttle_turfs), 10) /datum/shuttle_loan_situation/honk sender = "Central Command Entertainment Division"