forked from github/server
support old data (eressea 1.0)
This commit is contained in:
parent
da3a56efe2
commit
36a5e91eac
|
@ -1296,7 +1296,9 @@ readfaction(struct storage * store)
|
||||||
}
|
}
|
||||||
read_groups(store, f);
|
read_groups(store, f);
|
||||||
f->spellbook = NULL;
|
f->spellbook = NULL;
|
||||||
read_spellist(&f->spellbook, store);
|
if (store->version>=REGIONOWNER_VERSION) {
|
||||||
|
read_spellist(&f->spellbook, store);
|
||||||
|
}
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@ function loadscript(name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
loadscript("default.lua")
|
|
||||||
|
|
||||||
function change_locales()
|
function change_locales()
|
||||||
-- local localechange = { }
|
-- local localechange = { }
|
||||||
local localechange = { de = { "rtph" } }
|
local localechange = { de = { "rtph" } }
|
||||||
|
|
Loading…
Reference in New Issue