Remove console spam from mcl_loot

This commit is contained in:
Wuzzy 2019-03-06 05:14:31 +01:00
parent 08d3df10d4
commit 29449eb8d4
1 changed files with 0 additions and 3 deletions

View File

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