Replaced a .len with a length() just in case

This commit is contained in:
Putnam
2020-04-13 17:19:39 -07:00
parent 75bb0cfab2
commit d0cea0d84a

View File

@@ -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