Burner can be crafted from any open container (#75978)

![image](https://github.com/tgstation/tgstation/assets/3625094/042ef40c-512f-40c5-8e65-a7dc842108fd)

## About The Pull Request

Expands the options for making burners (makeshift igniters) by requiring
any open container (bottles, cans, cups) instead of beaker subtypes.

## Why It's Good For The Game

Makes ghetto recipe a bit more ghetto-friendly

## Changelog
🆑
qol: Chemical burner can be crafted from any open container, not just
beakers
/🆑
This commit is contained in:
Andrew
2023-06-14 12:04:53 +02:00
committed by GitHub
parent edb9ac07f9
commit 48fa7744df
4 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -51,7 +51,7 @@
result = /obj/item/burner
time = 5 SECONDS
reqs = list(
/obj/item/reagent_containers/cup/beaker = 1,
/obj/item/reagent_containers/cup = 1,
/datum/reagent/consumable/ethanol = 15,
/obj/item/paper = 1,
)
@@ -62,7 +62,7 @@
result = /obj/item/burner/oil
time = 5 SECONDS
reqs = list(
/obj/item/reagent_containers/cup/beaker = 1,
/obj/item/reagent_containers/cup = 1,
/datum/reagent/fuel/oil = 15,
/obj/item/paper = 1,
)
@@ -73,7 +73,7 @@
result = /obj/item/burner/fuel
time = 5 SECONDS
reqs = list(
/obj/item/reagent_containers/cup/beaker = 1,
/obj/item/reagent_containers/cup = 1,
/datum/reagent/fuel = 15,
/obj/item/paper = 1,
)