From d2f8f34857f6065a68b8650af0956207320df912 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 28 May 2022 11:21:14 -0400 Subject: [PATCH] nerfs cooldown down to 3 seconds for the sake of not feeling entirely awful to use --- code/modules/food_and_drinks/pizzabox.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/pizzabox.dm b/code/modules/food_and_drinks/pizzabox.dm index d5b5a95891..9d0e38cdec 100644 --- a/code/modules/food_and_drinks/pizzabox.dm +++ b/code/modules/food_and_drinks/pizzabox.dm @@ -334,7 +334,7 @@ var/had_pizza = (pizza ? TRUE : FALSE) . = ..() if(had_pizza && !pizza) - COOLDOWN_START(src, next_pizza_attunement, (10 SECONDS)) //This is balanced specifically so that it takes several hours to generate enough pizzas to use for lag methods that on item duping + COOLDOWN_START(src, next_pizza_attunement, (3 SECONDS)) /obj/item/pizzabox/infinite/proc/attune_pizza(mob/living/carbon/human/noms) //tonight on "proc names I never thought I'd type" if(!pizza_preferences[noms.ckey])