summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-05-01 16:14:50 +0100
committerRealBadAngel <maciej.kasatkin@yahoo.com>2014-05-02 12:20:13 +0200
commit12ef7f6393c393414bf7828033fac59f9c7c96bf (patch)
tree4f55e4085d3de16deebeea6c20eff6c51383ca13
parentb492701915d6f0542ba39dabf9dfbfbdf215a6f6 (diff)
Remove stray debugging print
Previous commit left this in.
-rw-r--r--register.lua4
1 files changed, 0 insertions, 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 = ""