Skip to content

Commit

Permalink
Fix the *CDP display
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker authored and kahrl committed Aug 15, 2014
1 parent e9e9e42 commit 6c5f79f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/script/lua_api/l_mainmenu.cpp
Expand Up @@ -508,25 +508,25 @@ int ModApiMainMenu::l_get_favorites(lua_State *L)

if (servers[i]["password"].asString().size()) {
lua_pushstring(L,"password");
lua_pushboolean(L,true);
lua_pushboolean(L,servers[i]["password"].asBool());
lua_settable(L, top_lvl2);
}

if (servers[i]["creative"].asString().size()) {
lua_pushstring(L,"creative");
lua_pushboolean(L,true);
lua_pushboolean(L,servers[i]["creative"].asBool());
lua_settable(L, top_lvl2);
}

if (servers[i]["damage"].asString().size()) {
lua_pushstring(L,"damage");
lua_pushboolean(L,true);
lua_pushboolean(L,servers[i]["damage"].asBool());
lua_settable(L, top_lvl2);
}

if (servers[i]["pvp"].asString().size()) {
lua_pushstring(L,"pvp");
lua_pushboolean(L,true);
lua_pushboolean(L,servers[i]["pvp"].asBool());
lua_settable(L, top_lvl2);
}

Expand Down

0 comments on commit 6c5f79f

Please sign in to comment.