Skip to content
Snippets Groups Projects
Commit 522acf92 authored by kwolekr's avatar kwolekr
Browse files

Make get_biome_list() error message more helpful

parent 0f15488e
Branches
Tags
No related merge requests found
......@@ -416,7 +416,9 @@ size_t get_biome_list(lua_State *L, int index,
if (is_single) {
Biome *biome = get_or_load_biome(L, index, biomemgr);
if (!biome) {
errorstream << "get_biome_list: failed to get biome" << std::endl;
errorstream << "get_biome_list: failed to get biome '"
<< (lua_isstring(L, index) ? lua_tostring(L, index) : "")
<< "'." << std::endl;
return 1;
}
......@@ -433,8 +435,9 @@ size_t get_biome_list(lua_State *L, int index,
Biome *biome = get_or_load_biome(L, -1, biomemgr);
if (!biome) {
fail_count++;
errorstream << "get_biome_list: failed to load biome (index "
<< count << ")" << std::endl;
errorstream << "get_biome_list: failed to get biome '"
<< (lua_isstring(L, -1) ? lua_tostring(L, -1) : "")
<< "'" << std::endl;
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment