From 920e9b994a5f789b03328c25fbb262a9b9e527d1 Mon Sep 17 00:00:00 2001 From: GuyLiner Date: Wed, 8 Feb 2023 13:36:50 -0500 Subject: [PATCH] Removed unnecessary print function --- mods/ENTITIES/mcl_mobs/spawning.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/spawning.lua b/mods/ENTITIES/mcl_mobs/spawning.lua index 07a47d70c..436b08536 100644 --- a/mods/ENTITIES/mcl_mobs/spawning.lua +++ b/mods/ENTITIES/mcl_mobs/spawning.lua @@ -534,7 +534,6 @@ local function spawn_check(pos,spawn_def,ignore_caps) local gotten_light = get_node_light(pos) --gotten_light is a table sometimes, causing a crash. Don't know the cause. - print(gotten_light) if type(gotten_light) ~= "table" then if gotten_light >= spawn_def.min_light and gotten_light <= spawn_def.max_light then return true