From 87a58a8cd4cb9aacca1c9955a5b79fb62f598c08 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Sun, 15 Dec 2024 19:07:46 -0500 Subject: [PATCH] Makes unabsorb chem NOT infinitely hallucinate you! (#16714) --- code/modules/reagents/reagents/vore_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagents/vore_vr.dm b/code/modules/reagents/reagents/vore_vr.dm index ef28e716fea..2b0ac6706d3 100644 --- a/code/modules/reagents/reagents/vore_vr.dm +++ b/code/modules/reagents/reagents/vore_vr.dm @@ -99,7 +99,7 @@ M.adjustHalLoss(1) if(!M.confused) M.confused = 1 M.confused = max(M.confused, 20) - M.hallucination += 15 + M.hallucination = max(M.hallucination, 20) //This used to be += 15 resulting in INFINITE HALLUCINATION for(var/obj/belly/B as anything in M.vore_organs)