forked from Mirrorlandia_minetest/minetest
fix typo invalid for loop end
This commit is contained in:
parent
d10223254a
commit
66750dc88e
@ -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 :)
|
||||||
|
Loading…
Reference in New Issue
Block a user