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:
parent
d10223254a
commit
66750dc88e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue