From f9604f8f8a35de8fd540e6bfcf0725b92ee6caea Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 30 Sep 2015 09:23:40 -0700 Subject: [PATCH] 2 minute cooldown --- code/modules/clothing/head/jobs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 7589c0fcfae..89cdef457a4 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -61,11 +61,11 @@ ..() if(ismob(loc)) var/mob/M = loc - if(candy_cooldown+120 < world.time) + if(candy_cooldown < world.time) var/obj/item/weapon/reagent_containers/food/snacks/candy_corn/CC = new /obj/item/weapon/reagent_containers/food/snacks/candy_corn(src) M.put_in_hands(CC) M << "You slip a candy corn from your hat." - candy_cooldown = world.time + candy_cooldown = world.time+1200 else M << "You just took a candy corn! You should wait a couple minutes, lest you burn through your stash."