From d0cea0d84a24e75b0fe33865658fc109e899054e Mon Sep 17 00:00:00 2001 From: Putnam Date: Mon, 13 Apr 2020 17:19:39 -0700 Subject: [PATCH] Replaced a .len with a length() just in case --- code/modules/vore/eating/bellymodes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/bellymodes.dm b/code/modules/vore/eating/bellymodes.dm index 121dc9f75c..2caaae401e 100644 --- a/code/modules/vore/eating/bellymodes.dm +++ b/code/modules/vore/eating/bellymodes.dm @@ -1,6 +1,6 @@ // Process the predator's effects upon the contents of its belly (i.e digestion/transformation etc) /obj/belly/proc/process_belly(var/times_fired,var/wait) //Passed by controller - if((times_fired < next_process) || !contents.len) + if((times_fired < next_process) || !length(contents)) recent_sound = FALSE return SSBELLIES_IGNORED