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."