From 0ab6ffb58fb26c8da43c29bc2ef94cf91de6f101 Mon Sep 17 00:00:00 2001 From: Verkister Date: Tue, 27 Dec 2022 13:13:58 +0200 Subject: [PATCH] Probably fixes simplemob nom debug logs The only possible cause I could find, given the circumstances and the rest of the code. The debug log trigger expects a returned TRUE from feed_grabbed_to_self proc, which in turn expects a returned TRUE from perform_the_nom proc. --- code/modules/vore/eating/simple_animal_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index 06c2f1d391..94c268d6c0 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -39,7 +39,7 @@ voremob_loaded = TRUE init_vore() belly = vore_selected - ..() + return ..() // // Simple proc for animals to have their digestion toggled on/off externally