From 992d3207a4e8921b1f1071504e8bdc4791c402b9 Mon Sep 17 00:00:00 2001 From: 81Denton <32391752+81Denton@users.noreply.github.com> Date: Wed, 10 Oct 2018 06:56:16 +0200 Subject: [PATCH] Make moths spawn with lamp heirloom only half the time (#40810) --- code/datums/traits/negative.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index a739f0faf6a..ec8c5c60309 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -37,7 +37,7 @@ var/mob/living/carbon/human/H = quirk_holder var/obj/item/heirloom_type - if(is_species(H, /datum/species/moth)) + if(is_species(H, /datum/species/moth) && prob(50)) heirloom_type = /obj/item/flashlight/lantern/heirloom_moth else switch(quirk_holder.mind.assigned_role)