mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
Fix mineral haul shuttle loan. (#32387)
* fix mineral haul shuttle loan * just realized this wouldn't work either
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user