fix typo invalid for loop end

This commit is contained in:
sapier 2013-03-14 00:24:07 +00:00 committed by kwolekr
parent d10223254a
commit 66750dc88e
1 changed files with 1 additions and 1 deletions

View File

@ -906,7 +906,7 @@ static int l_get_modnames(lua_State *L)
{ {
bool added = false; bool added = false;
for(std::list<std::string>::iterator x = mods_sorted.begin(); for(std::list<std::string>::iterator x = mods_sorted.begin();
x != mods_unsorted.end(); ++x) x != mods_sorted.end(); ++x)
{ {
// I doubt anybody using Minetest will be using // I doubt anybody using Minetest will be using
// anything not ASCII based :) // anything not ASCII based :)