diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index b4920a97d79..85a1c2b0215 100644 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -519,21 +519,30 @@ var/list/all_supply_groups = list(supply_emergency,supply_security,supply_engine access = access_eva /datum/supply_packs/engineering/inflatable - name = "Inflatable barriers" + name = "Inflatable barriers Crate" contains = list(/obj/item/weapon/storage/briefcase/inflatable, /obj/item/weapon/storage/briefcase/inflatable, /obj/item/weapon/storage/briefcase/inflatable) cost = 20 containername = "Inflatable Barrier Crate" -/datum/supply_packs/engineering/teg - name = "Thermo-Electric Generator" +/datum/supply_packs/engineering/engine/supermatter_shard + name = "Supermatter Shard Crate" + contains = list(/obj/machinery/power/supermatter_shard) + cost = 50 //So cargo thinks twice before killing themselves with it + containertype = /obj/structure/closet/crate/secure + containername = "supermatter shard crate" + access = access_ce + +/datum/supply_packs/engineering/engine/teg + name = "Thermo-Electric Generator Crate" contains = list( /obj/machinery/power/generator, /obj/machinery/atmospherics/binary/circulator, /obj/machinery/atmospherics/binary/circulator ) cost = 25 + containertype = /obj/structure/closet/crate/secure containername = "Thermo-Electric Generator Components" access = access_ce diff --git a/code/modules/power/supermatter/supermatter_crate.dm b/code/modules/power/supermatter/supermatter_crate.dm deleted file mode 100644 index 9158a3e27b9..00000000000 --- a/code/modules/power/supermatter/supermatter_crate.dm +++ /dev/null @@ -1,7 +0,0 @@ -/datum/supply_packs/engineering/engine/supermatter_shard - name = "Supermatter Shard Crate" - contains = list(/obj/machinery/power/supermatter_shard) - cost = 100 //So cargo thinks twice before killing themselves with it - containertype = /obj/structure/closet/crate/secure - containername = "supermatter shard crate" - access = access_ce diff --git a/paradise.dme b/paradise.dme index c0e4d75db78..34f32f368a8 100644 --- a/paradise.dme +++ b/paradise.dme @@ -1528,7 +1528,6 @@ #include "code\modules\power\singularity\particle_accelerator\particle_emitter.dm" #include "code\modules\power\singularity\particle_accelerator\particle_power.dm" #include "code\modules\power\supermatter\supermatter.dm" -#include "code\modules\power\supermatter\supermatter_crate.dm" #include "code\modules\procedural mapping\mapGenerator.dm" #include "code\modules\procedural mapping\mapGeneratorModule.dm" #include "code\modules\procedural mapping\mapGeneratorReadme.dm"