Open GoogleCodeExporter opened 8 years ago
This same thing happened to me as well today, hoping to get a response!
Original comment by jana.flo...@gmail.com
on 24 Aug 2011 at 8:49
Same here, looks like the whitespaces in the guild/realmname are screwed (tho
not sure)
Original comment by a.denijs...@gmail.com
on 6 Nov 2011 at 8:46
found it:
log.lua, replace (starting line 264):
for k,t in pairs(types) do
if type(d[k]) ~= t then
EPGP:Print(L["The imported data is invalid"])
return
end
end
with
for k,t in pairs(types) do
if(d[k] ~= nil) then
if type(d[k]) ~= t then
EPGP:Print(L["The imported data is invalid"])
return
end
end
end
this will only fix the error, already debugging further why it won't import now
Original comment by a.denijs...@gmail.com
on 6 Nov 2011 at 8:55
Theeere we go:
epgp.lua, replace (starting line: 708)
function EPGP:SetGlobalConfiguration(decay_p, extras_p, base_gp, min_ep,
outsiders)
with
function EPGP:SetGlobalConfiguration(decay_p, extras_p, base_gp, min_ep,
outsiders)
local DEFAULT_DECAY_P = 0
local DEFAULT_EXTRAS_P = 0
local DEFAULT_MIN_EP = 0
local DEFAULT_BASE_GP = 1
local DEFAULT_OUTSIDERS = 0
that imported for me perfectly
Original comment by a.denijs...@gmail.com
on 6 Nov 2011 at 9:01
trying to commit changes :P just never worked with code.google.com in terms of
repository
Original comment by a.denijs...@gmail.com
on 6 Nov 2011 at 9:08
This bug is still occuring in EPGP 5.7.1, and the posted fixes in comment #3/#4
still work.
Original comment by thisgene...@gmail.com
on 25 Jun 2012 at 6:38
Original issue reported on code.google.com by
thisgene...@gmail.com
on 24 Aug 2011 at 3:52