1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

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

View file

@ -906,7 +906,7 @@ static int l_get_modnames(lua_State *L)
{
bool added = false;
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
// anything not ASCII based :)