From 78c13d3ca2190b0c35073d73e72eefc24f71cb44 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 12 Dec 2015 21:34:56 +0100 Subject: [PATCH] bugfix dupe message http://bugs.eressea.de/view.php?id=2178 --- scripts/eressea/autoseed.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/eressea/autoseed.lua b/scripts/eressea/autoseed.lua index f348eed4d..733df06f8 100644 --- a/scripts/eressea/autoseed.lua +++ b/scripts/eressea/autoseed.lua @@ -88,7 +88,7 @@ function autoseed.init() end local dupe = get_faction_by_email(p.email) if dupe then - eressea.log.warning("seed: duplicate email " .. p.email .. " already used by faction " .. tostring(f)) + eressea.log.warning("seed: duplicate email " .. p.email .. " already used by faction " .. tostring(dupe)) else local f = seed(start, p.email, p.race or "human", p.lang or "de") num_seeded = num_seeded + 1