Skip to content

Commit 66750dc

Browse files
sapierkwolekr
sapier
authored andcommittedMar 13, 2013
fix typo invalid for loop end
1 parent d102232 commit 66750dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/scriptapi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ static int l_get_modnames(lua_State *L)
906906
{
907907
bool added = false;
908908
for(std::list<std::string>::iterator x = mods_sorted.begin();
909-
x != mods_unsorted.end(); ++x)
909+
x != mods_sorted.end(); ++x)
910910
{
911911
// I doubt anybody using Minetest will be using
912912
// anything not ASCII based :)

0 commit comments

Comments
 (0)
Please sign in to comment.