From 7fa5107b4be84b1c15060e890c5398da69476b28 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 19 Jun 2020 17:16:34 +0100 Subject: [PATCH] all methods of cooking define quality --- code/modules/food_and_drinks/kitchen_machinery/grill.dm | 1 + code/modules/hydroponics/grown/towercap.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/modules/food_and_drinks/kitchen_machinery/grill.dm b/code/modules/food_and_drinks/kitchen_machinery/grill.dm index 547ed244c0..d059925600 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/grill.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/grill.dm @@ -10,6 +10,7 @@ var/obj/item/reagent_containers/food/grilled_item var/grill_time = 0 var/datum/looping_sound/grill/grill_loop + var/quality_increase = 10 //cooking food via a grill gives it slightly higher quality /obj/machinery/grill/Initialize() . = ..() diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index a18dbe165d..757f104644 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -153,6 +153,7 @@ var/burn_icon = "bonfire_on_fire" //for a softer more burning embers icon, use "bonfire_warm" var/grill = FALSE var/fire_stack_strength = 5 + var/quality_increase = 0 //bonfires are not the greatest cooking appliance /obj/structure/bonfire/dense density = TRUE