diff --git a/code/modules/research/designs/protolathe/power_designs.dm b/code/modules/research/designs/protolathe/power_designs.dm index 1c15e966bc2..4c8e9311f19 100644 --- a/code/modules/research/designs/protolathe/power_designs.dm +++ b/code/modules/research/designs/protolathe/power_designs.dm @@ -13,12 +13,20 @@ C.charge = 0 //shouldn't produce power out of thin air. return C +// This is actually a battery. /datum/design/item/powercell/basic name = "Basic" req_tech = list(TECH_POWER = 1) materials = list(DEFAULT_WALL_MATERIAL = 700, MATERIAL_GLASS = 50) build_path = /obj/item/cell +// This is actually the standard power cell found in APCs. And is called for by logistics bounties. +/datum/design/item/powercell/apc + name = "Heavy-Duty" + req_tech = list(TECH_POWER = 1) + materials = list(DEFAULT_WALL_MATERIAL = 700, MATERIAL_GLASS = 50) + build_path = /obj/item/cell/apc + /datum/design/item/powercell/high name = "High-Capacity" req_tech = list(TECH_POWER = 2) diff --git a/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml b/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml new file mode 100644 index 00000000000..6c8970abdc5 --- /dev/null +++ b/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml @@ -0,0 +1,4 @@ +author: Hellfirejag +delete-after: True +changes: + - rscadd: "Heavy-Duty power cells required for logistics bounties can now actually be made in protolathes without having to steal them from APCs."