From 440e39ed68318d62f0fcd5429e2f754a18f3c797 Mon Sep 17 00:00:00 2001 From: Cebutris Date: Mon, 12 Feb 2018 22:15:53 -0500 Subject: [PATCH] limits the hallucinations a little --- code/citadel/custom_loadout/custom_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 1c7b95c268..3b4501153e 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -295,5 +295,5 @@ else if(H.get_item_by_slot(slot_neck) == src) if(H.arousalloss < H.max_arousal / 3) H.arousalloss = H.max_arousal / 3 - if(prob(5)) + if(prob(5) && H.hallucination < 15) H.hallucination += 10 \ No newline at end of file