Add rolling paper pack to bio generator for 50 biomass, make biogenerator interface slightly taller to prevent scrollbar (#53806)

This adds rolling paper pack (like you can get in the cigarette vending machines) to Hydroponic's bio generator for 50 biomass. It also makes the bio generator interface a bit taller because the new entry caused a scrollbar to appear.

Frankly I added this because of a shift where some heinous anti-smoking campaign left all of the vending machines dismantled and I found out rolling paper is not craftable anywhere else. That shift I got really lucky with weed mutations, so this made me sad.
This commit is contained in:
hannahscript
2020-09-18 22:11:14 -04:00
committed by GitHub
parent ba42da9bc4
commit 9da354d3fc
3 changed files with 10 additions and 2 deletions
@@ -146,6 +146,14 @@
build_path = /obj/item/stack/sheet/cardboard
category = list("initial","Organic Materials")
/datum/design/rolling_paper_pack
name = "Rolling Paper Pack"
id = "rolling_paper_pack"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass= 50)
build_path = /obj/item/storage/fancy/rollingpapers
category = list("initial","Organic Materials")
/datum/design/leather
name = "Sheet of Leather"
id = "leather"
@@ -17,7 +17,7 @@ export const Biogenerator = (props, context) => {
return (
<Window
width={550}
height={380}
height={420}
resizable>
{!!processing && (
<Dimmer fontSize="32px">
File diff suppressed because one or more lines are too long