Makes unabsorb chem NOT infinitely hallucinate you! (#16714)

This commit is contained in:
Cameron Lennox
2024-12-16 10:07:46 +10:00
committed by GitHub
parent 21f495a32e
commit 87a58a8cd4
+1 -1
View File
@@ -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)