diff options
author | sapier <Sapier at GMX dot net> | 2013-03-14 00:24:07 +0000 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2013-03-13 19:42:05 -0400 |
commit | 66750dc88e3b1001e2141dd965345ae51095e0bb (patch) | |
tree | 39786feaa89ab41b3b41b5cc8b2c76e8a8d967f9 /src | |
parent | d10223254ab9363eb1b6f8cc7aa6b99965940cee (diff) | |
download | minetest-66750dc88e3b1001e2141dd965345ae51095e0bb.tar.gz minetest-66750dc88e3b1001e2141dd965345ae51095e0bb.tar.bz2 minetest-66750dc88e3b1001e2141dd965345ae51095e0bb.zip |
fix typo invalid for loop end
Diffstat (limited to 'src')
-rw-r--r-- | src/scriptapi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp index f95f5a29d..13696eabf 100644 --- a/src/scriptapi.cpp +++ b/src/scriptapi.cpp @@ -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 :) |