From 12ef7f6393c393414bf7828033fac59f9c7c96bf Mon Sep 17 00:00:00 2001 From: Zefram Date: Thu, 1 May 2014 16:14:50 +0100 Subject: [PATCH] Remove stray debugging print Previous commit left this in. --- register.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/register.lua b/register.lua index 82a7834..ab97f02 100644 --- a/register.lua +++ b/register.lua @@ -166,10 +166,6 @@ local function compute_group_representative_item(groupspec) table.insert(candidate_items, itemname) end end - print("group spec "..groupspec.." has "..#candidate_items.." candidates") - for _, i in ipairs(candidate_items) do - print(" ", i) - end if #candidate_items == 0 then return { item = "unobtainium!", sole = true } end if #candidate_items == 1 then return { item = candidate_items[1], sole = true } end local bestitem = ""