From 29449eb8d4d878dad3d5d5bedef228f918b3dd89 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 6 Mar 2019 05:14:31 +0100 Subject: [PATCH] Remove console spam from mcl_loot --- mods/CORE/mcl_loot/init.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/mods/CORE/mcl_loot/init.lua b/mods/CORE/mcl_loot/init.lua index 3b52e3655..35c72539d 100644 --- a/mods/CORE/mcl_loot/init.lua +++ b/mods/CORE/mcl_loot/init.lua @@ -114,9 +114,6 @@ local function get_random_slots(max_slot) table.insert(slots_out, slots[r]) table.remove(slots, r) end - for s=1, #slots_out do - print(slots_out[s]) - end return slots_out end