From eeea95e65a2e346c60a447f0d9247a25eb5ea249 Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Tue, 31 Aug 2021 04:28:20 -0700 Subject: [PATCH] cannon recipe fix (#61014) Cannons now accept all oxygen tanks, not just red ones --- code/datums/components/crafting/recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 5a26c5ac75b..90fdacc0a00 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -551,7 +551,7 @@ result = /obj/structure/cannon/trash reqs = list( /obj/item/melee/skateboard/improvised = 1, - /obj/item/tank/internals/oxygen/red = 1, + /obj/item/tank/internals/oxygen = 1, /datum/reagent/drug/maint/tar = 15, /obj/item/restraints/handcuffs/cable = 1, /obj/item/storage/toolbox = 1,